Skip to main content
PUT
/
scheduled-invitees
/
{uuid}
/
cancel
Cancel a scheduled invitee
curl --request PUT \
  --url https://api.zeeg.me/v2/scheduled-invitees/{uuid}/cancel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cancellationReason": "Sorry, due to an unforeseen event, I have to cancel our meeting."
}
'
{
  "success": true,
  "message": "Event cancelled successfully.",
  "status": 200
}

Authorizations

Authorization
string
header
required

Path Parameters

uuid
string<uuid>
required

UUID of a specific invitee (zg-XXX format)

Example:

"zg-O69bac566950c6"

Body

application/json
cancellationReason
string

Optional reason for cancelling the invitee.

Maximum string length: 512

Response

OK

success
boolean
message
string
status
integer
Last modified on April 4, 2026