curl --request GET \
--url https://api.myscalev.com/v3/bundles/{bundle_id}/partners \
--header 'Authorization: Bearer <token>'{
"data": [
{
"created_at": "2023-11-07T05:31:56Z",
"id": 123,
"partner": {
"account_holder": "<string>",
"email": "jsmith@example.com",
"id": 123,
"is_banned": true,
"logo": "<string>",
"unique_id": "<string>",
"username": "<string>"
}
}
],
"is_paginated": true,
"has_next": false,
"last_id": 99,
"page_size": 25
}Requires the bundle:list machine scope. Retrieves a paginated list of partners associated with a specific bundle. The data is sorted by id in descending order and cannot be changed. Uses cursor-based pagination with default page size of 25 and maximum of 25.
curl --request GET \
--url https://api.myscalev.com/v3/bundles/{bundle_id}/partners \
--header 'Authorization: Bearer <token>'{
"data": [
{
"created_at": "2023-11-07T05:31:56Z",
"id": 123,
"partner": {
"account_holder": "<string>",
"email": "jsmith@example.com",
"id": 123,
"is_banned": true,
"logo": "<string>",
"unique_id": "<string>",
"username": "<string>"
}
}
],
"is_paginated": true,
"has_next": false,
"last_id": 99,
"page_size": 25
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the last item from the previous page. Used for cursor-based pagination.
Number of items to return per page. Default is 25, maximum is 25.
x <= 25