Base URL https://api.tolt.com
Body Parameters
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)
Partner’s status. Valid values are: ‘active’, ‘pending’, ‘suspended’,
‘rejected’.
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
Partner’s status. Valid values are: ‘active’, ‘pending’, ‘suspended’,
‘rejected’.
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 PUT 'https://api.tolt.com/v1/partners/part_s7mbzRGn46BhVgNFHD6fDgXW' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"company_name": "Dunder Mifflin Paper Company",
"payout_method": "wise",
"payout_details": {
"email": "michael.wise@dundermifflin.com"
}
}'
{
"success": true,
"data": {
"id": "part_s7mbzRGn46BhVgNFHD6fDgXW",
"first_name": "Michael",
"last_name": "Scott",
"email": "michael.scott@dundermifflin.com",
"company_name": "Dunder Mifflin Paper Company",
"program_id": "prg_YRsbPDAKhWfdqJbFACheh",
"organization_id": "org_JE3mfYNL9ci7sFaJazAv2",
"group_id": "grp_Zc2uw9zm1eyBiD3MHcjV3RDn",
"payout_method": "wise",
"payout_details": {
"email": "michael.wise@dundermifflin.com"
},
"country_code": "US",
"created_at": "2025-01-13T10:06:11.251Z",
"status": "active",
"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
}
}