Base URL https://api.tolt.com
Body Parameters
The program ID that the partner will belong to
The group ID to assign the partner to
Two-letter ISO country code of the partner
Partner’s payout method. Valid values are: ‘paypal’, ‘crypto’, ‘wise’,
‘bank_transfer’, ‘wire’, ‘none’
Details specific to the selected payout method (e.g., PayPal email, bank
details)
Response
Whether the request was successful
Unique identifier for the partner, uuid
or prefixed with part_
Program ID the partner belongs to
Group ID the partner belongs to
Payout method specific details
Two-letter ISO country code
ISO 8601 timestamp of creation
ISO 8601 timestamp of last update
The partner has completed onboarding.
A note why a partner was rejected.
A note related to the partner.
Reason for partner suspension if applicable.
first_customer_email_active
Whether first customer email notifications are active for this partner.
new_customer_email_active
Whether new customer email notifications are active for this partner.
Whether payout paid email notifications are active for this partner.
curl -X POST 'https://api.tolt.com/v1/partners' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"first_name": "Michael",
"last_name": "Scott",
"email": "michael.scott@dundermifflin.com",
"program_id": "prg_YRsbPDAKhWfdqJbFACheh",
"company_name": "Dunder Mifflin",
"country_code": "US",
"payout_method": "paypal",
"payout_details": {
"email": "michael.paypal@dundermifflin.com"
}
}'
{
"success": true,
"data": [
{
"id": "part_yP2D2oFyPsFUfkwzXCzRn3U2",
"status": "active",
"first_name": "TEST create",
"last_name": "test",
"company_name": null,
"email": "aaaa@gmail.com",
"program_id": "prg_ztTmEaAJRtfPVKM9nHhZwhjH",
"organization_id": "org_qeHXERFhTv5DzxpvxtA5BWL5",
"group_id": "grp_gMHPxVAQJghkdXSNXyQk6xfB",
"created_at": "2025-08-06T13:46:07.328Z",
"updated_at": "2025-08-06T13:46:07.328Z",
"payout_method": "none",
"payout_details": {},
"country_code": null,
"completed_onboarding": true,
"rejection_note": null,
"internal_note": null,
"suspension_reason": null,
"first_customer_email_active": true,
"new_customer_email_active": true,
"payout_paid_email_active": true
}
]
}