Skip to main content
PATCH
/
bookings
/
{id}
cURL
curl --request PATCH \
  --url https://api.boothzen.com/v1/bookings/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_date": "2023-11-07T05:31:56Z",
  "event_start_time": "<string>",
  "event_end_time": "<string>",
  "event_type": "<string>",
  "status": "<string>",
  "notes": "<string>"
}
'
"<string>"

Documentation Index

Fetch the complete documentation index at: https://developer.boothzen.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token: bz_live_<32chars> (live mode) or bz_test_<32chars> (test mode). Obtain via BoothZen admin โ†’ Settings โ†’ API Keys.

Path Parameters

id
string
required

Body

application/json

Phase 140-03: Update booking via Public API. All fields are optional (PATCH semantics).

event_date
string<date-time>
event_start_time
string | null
event_end_time
string | null
event_type
string | null
Maximum string length: 100
status
string
Maximum string length: 50
notes
string | null
Maximum string length: 5000

Response

The response is of type string.