Customers
Retrieve a customer
Retrieve customer information by ID or email. View purchase history, subscriptions, and profile details.
get/v1/customers
Query parameters
customer_idstring
Example:cust_1234567890
The unique identifier of the customer.
emailstring
Example:customer@example.com
The email address of the customer.
Response
Successfully retrieved the customer
Example response
{
"email": "user@example.com",
"name": "John Doe",
"metadata": {
"key": "value"
},
"country": "US",
"created_at": "2023-01-01T00:00:00Z",
"updated_at": "2023-01-01T00:00:00Z"
}