GET
/
v1
/
customers
/
:id
curl -X GET 'https://api.tolt.com/v1/customers/cust_dK9bzRGn46BhVgNFHD6fDgXW' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d ''
{
  "success": true,
  "data": {
    "id": "cust_dK9bzRGn46BhVgNFHD6fDgXW",
    "email": "customer@email.com",
    "partner_id": "part_s7mbzRGn46BhVgNFHD6fDgXW",
    "name": "Jim Halpert",
    "customer_id": "jim_halpert_789",
    "created_at": "2025-01-15T14:30:00.000Z",
    "updated_at": "2025-01-15T15:00:00.000Z",
    "status": "active",
    "program_id": "prg_YRsbPDAKhWfdqJbFACheh",
    "organization_id": "org_JE3mfYNL9ci7sFaJazAv2"
  }
}

Base URL https://api.tolt.com


Query Parameters

expand
array - optional

Specify which related objects to include in the response. Valid values are ‘partner’ and ‘program’. Use expand[]=partner or expand[]=program to include the related objects.

include
array - optional

Specify which related objects to include in the response. Valid values are ‘stats’. Use include[]=stats to include the related objects.

Response

id
string

Unique identifier for the customer, uuid or prefixed with cust_

email
string

Your unique identifier for the customer

partner_id
string

ID of the referring partner

name
string

Customer’s name

customer_id
string

Your internal customer identifier

created_at
string

ISO 8601 timestamp of when the customer was created

updated_at
string

ISO 8601 timestamp of when the customer became active

status
string

Current status of the customer (e.g., ‘lead’, ‘trialing’, ‘active’, ‘canceled’)

program_id
string

Program ID the customer belongs to

organization_id
string

Organization ID

partner
object
program
object
stats
object
curl -X GET 'https://api.tolt.com/v1/customers/cust_dK9bzRGn46BhVgNFHD6fDgXW' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d ''
{
  "success": true,
  "data": {
    "id": "cust_dK9bzRGn46BhVgNFHD6fDgXW",
    "email": "customer@email.com",
    "partner_id": "part_s7mbzRGn46BhVgNFHD6fDgXW",
    "name": "Jim Halpert",
    "customer_id": "jim_halpert_789",
    "created_at": "2025-01-15T14:30:00.000Z",
    "updated_at": "2025-01-15T15:00:00.000Z",
    "status": "active",
    "program_id": "prg_YRsbPDAKhWfdqJbFACheh",
    "organization_id": "org_JE3mfYNL9ci7sFaJazAv2"
  }
}