Customers
Get customer by ID
Retrieve detailed information about a specific customer including their billing history summary.
get/api/customers/{id}
Path parameters
idstring required
Customer ID
Response
Customer details
Example response
{
"id": "clx1234567890",
"externalId": "user_12345",
"email": "customer@example.com",
"name": "Jane Doe",
"country": "US",
"currency": "USD"
}Changes
Changed in 1 of the 2 revisions of this API.1
- ○
added the media type
application/jsonfor the response with the status200response-media-type-added
- ○