Skip to main content
POST
/
networks
/
trafficcontrolstable
Find Traffic Controls (Advanced)
curl --request POST \
  --url https://api.eflow.team/v1/networks/trafficcontrolstable \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "search_terms": [
    {
      "search_type": "name",
      "value": "search query"
    }
  ],
  "filters": {
    "status": "active",
    "network_offer_ids": [
      1
    ]
  }
}
'
{
  "controls": [
    {
      "network_traffic_control_id": 1,
      "network_id": 1,
      "name": "Block Bad Sources",
      "status": "active",
      "is_apply_all_affiliates": true,
      "is_apply_all_offers": true,
      "control_type": "blacklist",
      "time_created": 1774721611,
      "time_saved": 1774721611,
      "network_offer_ids": null,
      "network_affiliate_ids": null,
      "network_advertiser_ids": null
    }
  ],
  "paging": {
    "page": 1,
    "page_size": 50,
    "total_count": 1
  }
}
Retrieve a paginated list of traffic controls with search and filter support. Unlike the basic GET endpoint, this returns traffic controls with additional filter capabilities.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
search_terms
object[]

Text search filters.

filters
object

Filters to narrow down the set of traffic controls returned.

paging
object

Response

200 - application/json
controls
object[]
paging
object