Skip to main content
PUT
/
v1
/
eventCalls
/
markSlotFree
Mark Booked Slot as Free
curl --request PUT \
  --url http://localhost:4000/v1/eventCalls/markSlotFree \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "isSlotFree": true
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": 123,
    "isSlotFree": true,
    "googleEventId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
id
integer
required

Event call ID

isSlotFree
boolean
required

Whether the slot is free (true) or busy (false)

Response

Slot free status updated

success
boolean
required
message
string
required
data
object