Cancel a specific scheduled event.
curl --request PUT \
--url https://api.zeeg.me/v2/scheduled-events/{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
}UUID of a specific scheduled event (zg-XXX format)
"zg-O69bac566950c6"
Optional reason for cancelling the event.
512curl --request PUT \
--url https://api.zeeg.me/v2/scheduled-events/{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
}