Core Concepts
Customers
Represent the end users being billed by a tenant.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Represent the end users being billed by a tenant.
| Field | Description |
|---|---|
code | Public customer code, such as CUST_9XyZ456q. |
email | Required customer email. |
name | Optional customer name. |
phoneNumber | Optional phone number. |
externalRef | Optional ID from your own system. |
curl -X POST https://api.example.com/v1/customer/ \
-H "Content-Type: application/json" \
-H "X-Api-Key: sub_xxx" \
-d '{
"email": "customer@example.com",
"name": "Ada Lovelace",
"externalRef": "user_123"
}'
GET /v1/customer/:emailOrCode