cURL
curl --request GET \ --url https://api.antei.com/customers/{id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "name": "<string>", "email": "<string>", "tax_id": "<string>" }
Fetch a specific customer’s details using their unique ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the customer
Customer details
The response is of type object.
object