Skip to main content
POST
/
eventCalls
/
cancelCall
Cancel an event call
curl --request POST \
  --url https://api-dev.iclosed.io/eventCalls/cancelCall \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "eventCallId": 123,
  "cancelReason": "<string>"
}'
{
"message": "Call cancelled successfully",
"status": 200
}

Authorizations

Authorization
string
header
required

API key required in 'Authorization' header. Format: iclosed-<token>

Body

application/json
eventCallId
integer
required

ID of the event call to cancel

cancelReason
string

Reason for cancelling the event call

Response

Successfully cancelled event call

message
string
required

Success message

Example:

"Call cancelled successfully"

status
integer
required

HTTP status code

Example:

200

I