Affiliates
List affiliate invitations
Retrieve a paginated list of the invitations you have sent, with their status (pending until accepted, accepted once the affiliate has joined).
get/v1/affiliates/invites
Query parameters
page_numbernumber
Example:1
The page number for pagination.
page_sizenumber
Example:50
The number of items per page.
Response
Successfully retrieved affiliate invitations
Example response
{
"items": [
{
"object": "affiliate-invite",
"email": "partner@example.com",
"name": "Jane Partner",
"status": "pending"
}
],
"pagination": {
"current_page": 1,
"next_page": 2
}
}