cURL
curl --request PUT \ --url http://localhost:4000/v1/eventCalls/markSlotFree \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "id": 123, "isSlotFree": true } '
200
Example
{ "success": true, "message": "<string>", "data": { "id": 123, "isSlotFree": true, "googleEventId": "<string>" } }
Update whether an event call slot is free or busy in calendar
API key required in Authorization header. Format: iclosed-<token>
iclosed-<token>
Event call ID
Whether the slot is free (true) or busy (false)
Slot free status updated
Show child attributes