Skip to main content
GET
/
v1
/
affiliation_requests
List
curl --request GET \
  --url https://{defaultHost}/v1/affiliation_requests \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/affiliation_requests"
  },
  "data": [
    {
      "id": "d882c728-c2ed-49af-b55f-2e9cf85074f3",
      "object": "affiliation_request",
      "bio": "I will promote your products to all my followers!",
      "email": "[email protected]",
      "first_name": "Test",
      "last_name": "Affiliate 1",
      "metadata": {},
      "payout_email": null,
      "status": "pending",
      "url": null,
      "portal_url": "http://app.example.com/portal_redirect/affiliation_requests/d882c728-c2ed-49af-b55f-2e9cf85074f3",
      "created_at": 1767909661,
      "updated_at": 1767909661
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

query
string

The query to be used for full text search of this collection.

status[]
string[]

Only return objects with the given status.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.