Skip to main content
POST
/
v1
/
calendar
/
cancel-meeting
Cancel Meeting
curl --request POST \
  --url https://api.example.com/v1/calendar/cancel-meeting \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_id": "<string>",
  "calendar_id": "<string>"
}
'
{
  "ok": true,
  "event_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.atonom.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
event_id
string

Event id to cancel as returned by a prior create or book call.

calendar_id
string

Calendar id hosting the event when required by the provider.

Response

OK

ok
boolean

True when the provider reports cancellation succeeded.

event_id
string

Echo of the cancelled event id when available.