cURL
curl --request PATCH \ --url https://api.antei.com/customers/{id} \ --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>" }
Update fields of an existing customer.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Updated customer data
The body is of type object.
object
Customer updated
The response is of type object.