Declines a provisional booking request and notifies the attendee
curl --request POST \
--url https://api.example.com/v4/provisional-booking/{id}/decline \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"reason": "<string>"
}
'User ID to act as when using API Key authentication (required with API Key)
Provisional booking ID
Reason for declining the booking request
Successfully declined provisional booking
curl --request POST \
--url https://api.example.com/v4/provisional-booking/{id}/decline \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"reason": "<string>"
}
'