Authorization (string, Required) — Token for authentication
Content-Type: application/json
Include the Authorization header with a valid token for all requests.
email (string · email, Required) — The unique email address of the customer
first_name (string, Optional) — The first name of the customer (required for individual customers) Example: John
John
last_name (string, Optional) — The last name of the customer (required for individual customers) Example: Doe
Doe
company_name (string, Optional) — The name of the company (required for corporate customers) Example: Acme Corporation
Acme Corporation
type (string · enum, Required) — The type of customer Possible values: individual corporate
individual
corporate
201 — Customer created successfully (application/json) Response object properties: customer_id, email, company_name, type, first_name, last_name
customer_id
email
company_name
type
first_name
last_name
Last updated 5 months ago
Last updated 2 hours ago
{ "customer_id": "123e4567-e89b-12d3-a456-426614174000", "email": "[email protected]", "company_name": "Acme Corporation", "type": "individual", "first_name": "John", "last_name": "Doe" }