GET
/
customers
/
{id}
curl --request GET \
  --url https://base_url/api/v1/customers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "b6d009b0-d174-463f-b030-94643c28e209",
    "corporation_id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
    "name": "John Doe",
    "created_at": 1727284490,
    "exemption_certificates": [
      {
        "id": "<string>",
        "expiring_at": "2023-12-25",
        "issued_at": "2023-12-25",
        "country": "US",
        "jurisdiction": "<string>",
        "status": "INVALID",
        "verification_status": "PENDING_VERIFICATION",
        "type": "PURPOSE_WHOLESALE",
        "customer_id": "<string>",
        "file_id": "<string>",
        "created_at": 1727284490
      }
    ]
  },
  "message": "Successfully fetched customer."
}

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

200
application/json
Detailed information about a specific customer
data
object
message
string
Example:

"Successfully fetched customer."