Skip to main content
POST
/
customers
cURL
curl --request POST \
  --url https://api.boothzen.com/v1/customers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "company": "<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 customer via Public API.

first_name
string
required
Maximum string length: 100
last_name
string
required
Maximum string length: 100
email
string<email>
required
Maximum string length: 255
phone
string | null
Maximum string length: 50
company
string | null
Maximum string length: 200

Response

The response is of type string.