Get customer details

Returns detailed information for a specific customer.

GET
/v1/customers/:customerId
AuthorizationBearer <token>

API key authentication. Use "Bearer YOUR_API_KEY" format.

In: header

Path Parameters

customerIdstring

Response Body

application/json

curl -X GET "https://api.checkoutpage.com/v1/customers/:customerId"
{
  "data": {
    "id": "string",
    "name": "string",
    "companyName": "string",
    "email": "string",
    "phone": "string",
    "billingEmail": "string",
    "address": {
      "line1": "string",
      "line2": "string",
      "city": "string",
      "state": "string",
      "postalCode": "string",
      "country": "string"
    },
    "shipping": {
      "name": "string",
      "phone": "string",
      "address": {
        "line1": "string",
        "line2": "string",
        "city": "string",
        "state": "string",
        "postalCode": "string",
        "country": "string"
      }
    },
    "taxId": "string",
    "taxIdType": "string",
    "sellerId": "string",
    "stripeCustomerId": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
}
Empty
Empty
Empty
Empty
Empty
Empty