List affiliate payouts

GET https://api.tamio.com/v2/affiliates/payouts/list

Returns a paginated list of affiliate payouts. Supports filtering by affiliate partner, affiliate program, and date range.

Query Parameters

page integer

Page number for pagination (1-based).

per_page integer

Number of payouts to return per page.

order string

Sort order for the results.

ascdesc
from object

Start date filter (ISO 8601 string or Unix timestamp).

to object

End date filter (ISO 8601 string or Unix timestamp).

affiliate_program_partner_id string

Filter payouts by a specific affiliate partner UUID.

affiliate_program_id string

Filter payouts by a specific affiliate program UUID.

Responses

200 Paginated list of affiliate payouts.

Paginated list of affiliate payouts.

status integer
total_results integer

Total number of matching payouts.

payouts array of Payout
400 Validation error. Possible causes:
401 Missing or invalid Bearer token.
/affiliates/payouts/list
1const response = await fetch("https://api.tamio.com/v2/affiliates/payouts/list", {
2 headers: {
3 "Authorization": "Bearer YOUR_API_KEY",
4 "Accept": "application/json"
5 }
6});
7const data = await response.json();
Responses
{
  "status": 200,
  "total_results": 15,
  "payouts": []
}