Base URL https://api.tolt.com
Body Parameters
The partner ID who referred this customer
Associated subscription identifier
Your internal customer identifier
Tracking click identifier
ISO 8601 timestamp of when the customer was created
ISO 8601 timestamp of when the customer became a lead
ISO 8601 timestamp of when the customer became active
Customer’s status. Valid values are: ‘lead’, ‘trialing’, ‘active’, ‘canceled’
Response
Whether the request was successful
Unique identifier for the customer, uuid
or prefixed with cust_
Your unique identifier for the customer
ID of the referring partner
Associated subscription identifier
Your internal customer identifier
Tracking click identifier
ISO 8601 timestamp of creation
ISO 8601 timestamp of lead conversion
ISO 8601 timestamp of activation
ISO 8601 timestamp of updated customer
Customer’s current status
Plan the customer subscribed to
Identifier for a promotoinal code used by the customer
Program ID the customer belongs to
curl -X POST 'https://api.tolt.com/v1/customers' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"email": "cust_123",
"partner_id": "part_s7mbzRGn46BhVgNFHD6fDgXW",
"name": "Jim Halpert",
"subscription_id": "sub_456",
"customer_id": "jim_halpert_789",
"click_id": "click_abc",
"status": "active",
"active_at": "2025-01-15T14:30:00.000Z"
}'
{
"success": true,
"data": [
{
"id": "cust_dK9bzRGn46BhVgNFHD6fDgXW",
"customer_id": "jim_halpert_789",
"identifier": "james@tolt.com",
"email": "james@tolt.com",
"name": "Jim Halpert",
"status": "active",
"plan": null,
"subscription_id": "sub_456",
"lead_at": "2025-04-25T11:00:00.797Z",
"active_at": "2025-01-15T14:30:00.000Z",
"click_id": "click_abc",
"program_id": "prg_YRsbPDAKhWfdqJbFACheh",
"partner_id": "part_s7mbzRGn46BhVgNFHD6fDgXW",
"organization_id": "org_JE3mfYNL9ci7sFaJazAv2",
"created_at": "2025-04-25T11:00:00.800Z",
"updated_at": "2025-04-25T11:00:00.800Z",
"promotion_code_id": null
}
]
}