List blocked affiliates for a program

GET https://api.tamio.com/v2/affiliates/blocked/{uuid}

Returns a paginated list of blocked affiliates for a specific affiliate program. Supports filtering by date range.

Path Parameters

uuid string*

UUID of the affiliate program to list blocked affiliates for.

Query Parameters

page integer

Page number for pagination (1-based).

per_page integer

Number of blocked affiliates 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).

Responses

200 Paginated list of blocked affiliates.

Paginated list of blocked affiliates.

status integer
total_results integer

Total number of blocked affiliates.

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