Skip to main content
PATCH
/
customers
/
{id}
cURL
curl --request PATCH \
  --url https://api.boothzen.com/v1/customers/{id} \
  --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.

Path Parameters

id
string
required

Body

application/json
first_name
string
Maximum string length: 100
last_name
string
Maximum string length: 100
email
string<email>
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.