Skip to main content
GET
/
customers
/
{id}
GET /customers/cust_789
{
  "id": "cust_789",
  "name": "Acme Corporation",
  "email": "contact@acme.com",
  "corporation_id": "corp_123",
  "created_at": 1706000000,
  "shipping_address": {
    "line1": "123 Main St",
    "line2": "Suite 100",
    "city": "San Francisco",
    "state": "CA",
    "postal_code": "94105",
    "country": "US"
  }
}
Retrieves detailed information about a specific customer.

Path parameters

id
string
required
The unique identifier for the customer

Response

id
string
Unique identifier for the customer
name
string
Customer name
email
string
Customer email address
corporation_id
string
The corporation ID this customer belongs to
created_at
int64
Unix timestamp of when the customer was created
source_platform_id
string
Source platform identifier (if applicable)
source_platform
string
Source platform name (if applicable)
shipping_address
object
Customer’s shipping address
exemption_metadata
object
Exemption certificate information for the customer
GET /customers/cust_789
{
  "id": "cust_789",
  "name": "Acme Corporation",
  "email": "contact@acme.com",
  "corporation_id": "corp_123",
  "created_at": 1706000000,
  "shipping_address": {
    "line1": "123 Main St",
    "line2": "Suite 100",
    "city": "San Francisco",
    "state": "CA",
    "postal_code": "94105",
    "country": "US"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier of the customer to fetch.

Response

Detailed information about a specific customer

data
object
message
string
Example:

"Successfully fetched customer."