cURL
curl --request GET \ --url https://api.numeralhq.com/tax/customers/{customer_id} \ --header 'Authorization: Bearer <token>'
{ "id": "cus_123456789", "object": "tax.customer", "reference_customer_id": "20506", "name": "Customer Name", "email": "customer@example.com", "is_tax_exempt": true }
Retrieve the details of a specific customer
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the customer to retrieve
Customer details
The response is of type object.
object