Back to Tools
extend_availability_hold
write:bookingsExtend an existing slot hold.
Input Parameters
Parameters
| Property | Type | Description |
|---|---|---|
session_idrequired | string | Session identifier |
Response
Response Schema
| Property | Type | Description |
|---|---|---|
expires_atrequired | string | New expiry (ISO 8601) |
Example
Requestjson
{
"type": "tool",
"name": "extend_availability_hold",
"params": {
"session_id": "session-123"
}
}Responsejson
{
"success": true,
"data": {
"expires_at": "2026-01-15T18:15:00Z"
}
}cURL Example
curl -X POST https://app.bizily.io/api/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{\n "type": "tool",\n "name": "extend_availability_hold",\n "params": {\n "session_id": "session-123"\n }\n}'Required scope: This tool requires the write:bookings scope. Make sure your API key has this permission enabled in Settings → Developer.