Skip to main content
POST
/
affiliates
/
blockedvariables
Find All Blocked Variables
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/blockedvariables \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_offer_id": 1,
  "timezone_id": 90,
  "from": "2025-01-01",
  "to": "2025-01-31"
}
'
{
  "variables": [
    {
      "variable": "<string>",
      "value": "<string>",
      "operator": "<string>"
    }
  ]
}
Returns all blocked variables for a specific offer within a date range. These are sub-parameter values that have been blocked from generating valid traffic. The offer ID is required in the request body.

Authorizations

X-Eflow-Api-Key
string
header
required

The affiliate's API key generated from the Affiliate Portal. Uses the X-Eflow-Api-Key header.

Body

application/json
network_offer_id
integer
required

The offer ID to retrieve blocked variables for. Required.

timezone_id
integer
required

Timezone identifier for the date range.

from
string

Start date for the lookup period. Format YYYY-MM-DD.

to
string

End date for the lookup period. Format YYYY-MM-DD.

Response

200 - application/json
variables
object[]

Array of blocked variable entries.