Retrieve a customer
Retrieve a customer with a given ID.
GET
/v1/customers/:id
The above command returns JSON structured like this:
Retrieves the details of an existing customer. You need only supply the unique customer identifier that was returned upon customer creation.
Arguments
Parameter
Required
Description
customer
required
The identifier of the customer to be retrieved.
Returns
Returns a customer object if a valid identifier was provided. When requesting the ID of a customer that has been deleted, a subset of the customer’s information will be returned, including a deleted property, which will be true.
Last updated