cURL
curl --request POST \ --url https://api.antei.com/customers \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>", "email": "<string>", "tax_id": "<string>" }'
{ "id": "<string>", "name": "<string>", "email": "<string>", "tax_id": "<string>" }
Add a new customer to your organization.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Customer payload
The body is of type object.
object
Customer created successfully
The response is of type object.