Skip to main content
POST
/
bookings
cURL
curl --request POST \
  --url https://api.boothzen.com/v1/bookings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customer_id": "<string>",
  "event_date": "2023-11-07T05:31:56Z",
  "event_start_time": "<string>",
  "event_end_time": "<string>",
  "event_type": "<string>",
  "status": "<string>",
  "package_id": "<string>",
  "unit_id": "<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.

Body

application/json

Phase 140-03: Store booking via Public API. Scope enforcement handled upstream by EnforceApiScope middleware.

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

Response

Single resource: bare envelope (NOT {data:...}) per Stripe convention

The response is of type string.