GET
/
v1
/
partners
/
:id
curl -X GET 'https://api.tolt.com/v1/partners/part_s7mbzRGn46BhVgNFHD6fDgXW' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d ''
{
    "success": true,
    "data": {
        "id": "part_s7mbzRGn46BhVgNFHD6fDgXW",
        "first_name": "Michael",
        "last_name": "Scott",
        "email": "michael.scott@dundermifflin.com",
        "company_name": "Dunder Mifflin",
        "program_id": "prg_YRsbPDAKhWfdqJbFACheh",
        "organization_id": "org_JE3mfYNL9ci7sFaJazAv2",
        "group_id": "grp_Zc2uw9zm1eyBiD3MHcjV3RDn",
        "payout_method": "paypal",
        "payout_details": {
            "email": "michael.paypal@dundermifflin.com",
        },
        "country_code": "US",
        "created_at": "2025-01-13T10:06:11.251Z",
        "status": "active",
        "custom_fields": []
    }
}

Base URL https://api.tolt.com


Query Parameters

expand
array - optional

Specify which related objects to include in the response. Valid values are ‘group’ and ‘program’. Use expand[]=group 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 partner, uuid or prefixed with part_.

first_name
string

Partner’s first name

last_name
string

Partner’s last name

email
string

Partner’s email address

company_name
string

Partner’s company name

program_id
string

Unique identifier for the program the partner belongs to, uuid or prefixed with prg_.

organization_id
string

Unique identifier for the organization, uuid or prefixed with org_.

group_id
string

Unique identifier for the partner’s group, uuid or prefixed with grp_.

payout_method
string

Partner’s selected payout method (e.g., ‘paypal’, ‘crypto’, ‘wise’, ‘bank_transfer’, ‘wire’, ‘none’)

payout_details
object

Details specific to the selected payout method (e.g., PayPal email, bank details)

country_code
string

Two-letter ISO country code of the partner

created_at
string

ISO 8601 timestamp of when the partner was created

status
string

Current status of the partner (e.g., ‘active’, ‘inactive’)

custom_fields
array

Answers submitted by the partner during sign-up.

group
object
program
object
stats
object
curl -X GET 'https://api.tolt.com/v1/partners/part_s7mbzRGn46BhVgNFHD6fDgXW' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d ''
{
    "success": true,
    "data": {
        "id": "part_s7mbzRGn46BhVgNFHD6fDgXW",
        "first_name": "Michael",
        "last_name": "Scott",
        "email": "michael.scott@dundermifflin.com",
        "company_name": "Dunder Mifflin",
        "program_id": "prg_YRsbPDAKhWfdqJbFACheh",
        "organization_id": "org_JE3mfYNL9ci7sFaJazAv2",
        "group_id": "grp_Zc2uw9zm1eyBiD3MHcjV3RDn",
        "payout_method": "paypal",
        "payout_details": {
            "email": "michael.paypal@dundermifflin.com",
        },
        "country_code": "US",
        "created_at": "2025-01-13T10:06:11.251Z",
        "status": "active",
        "custom_fields": []
    }
}