Create Customer
Creates a new customer with name, email, and other information.
post
Authorizations
x-api-keystringRequired
Body
namestringOptionalExample:
John DoeemailstringRequiredExample:
[email protected]phonestringOptionalExample:
1234567890tagsstring[]RequiredExample:
Tags represent segments of customers. For example, a tag could be "VIP" or "New Customer"
["VIP","New Customer"]Responses
201
The customer has been successfully created
post
/v1/customerPOST /v1/customer HTTP/1.1
Host:
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 99
{
"name": "John Doe",
"email": "[email protected]",
"phone": "1234567890",
"tags": [
"VIP",
"New Customer"
]
}201
The customer has been successfully created
No content
Last updated