Skip to main content
POST
/
networks
/
affiliatestable
curl --request POST \
  --url https://api.eflow.team/v1/networks/affiliatestable \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "search_terms": [
    {
      "search_type": "name",
      "value": ""
    }
  ],
  "filters": {
    "account_status": "active"
  }
}
'
{
  "affiliates": [
    {
      "network_affiliate_id": 7,
      "network_id": 1,
      "name": "Some Agency Inc.",
      "account_status": "active",
      "account_manager_id": 1,
      "account_manager_name": "John Doe",
      "account_executive_id": 0,
      "account_executive_name": "",
      "today_revenue": "$7.32",
      "time_created": 1664825245,
      "time_saved": 1664825245,
      "labels": [
        "media_buyer"
      ],
      "balance": 0,
      "last_login": 1664985191,
      "global_tracking_domain_url": "www.testtracking.com",
      "relationship": {},
      "network_country_code": "US",
      "is_payable": false,
      "payment_type": "none",
      "payment_terms": 0,
      "network_traffic_source_id": 0
    }
  ],
  "paging": {
    "page": 1,
    "page_size": 50,
    "total_count": 1
  }
}
Retrieve a paginated list of affiliates. Supports search filters, sorting, and pagination to help you find and browse affiliates programmatically. Supports the relationship query parameter with values: signup, users.

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Query Parameters

page
integer
default:1

Page number (1-based).

page_size
integer
default:50

Number of results per page.

Required range: x <= 2000
relationship
enum<string>

Include related data.

Available options:
signup,
users

Body

application/json
search_terms
object[]

Text search filters.

filters
object

Structured filters to narrow results.

Response

200 - application/json
affiliates
object[]

List of affiliates matching the search criteria.

paging
object

Pagination information.