latestOpenAPI 3.1.0MIT2026-08-104712182.1 KB

c71c20d26559

customers

Get customer

Retrieves a single customer by ID

get/customers/{customerId}

Path parameters

customerIdinteger required

The system-generated identifier for the Customer

Response

Customer retrieved successfully

customerIdinteger
namestring
companystring
street1string
citystring
statestring
postalCodestring
countryCodestring
phonestring
emailstring
addressVerifiedstring

Example response

{
  "customerId": 12345678,
  "name": "Cam Newton",
  "company": "Test Company",
  "street1": "123 War Eagle Lane",
  "city": "Auburn",
  "state": "AL",
  "postalCode": "36830",
  "countryCode": "US",
  "phone": "555-555-5555",
  "email": "supermancam@example.com",
  "addressVerified": "Verified"
}