Last updated 1 year ago
Creates a new customer with name, email, and other information.
/v1/customer
John Doe
john.doe@gmail.com
1234567890
["VIP","New Customer"]
curl -L \ --request POST \ --url '/v1/customer' \ --header 'x-api-key: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "name": "John Doe", "email": "john.doe@gmail.com", "phone": "1234567890", "tags": [ "VIP", "New Customer" ] }'
No body