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": 100,
  "timezone_id": 67,
  "from": "2024-01-01",
  "to": "2024-01-31"
}
'
{
  "variables": [
    {
      "variable": "<string>",
      "value": "<string>",
      "operator": "<string>"
    }
  ]
}

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

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

OK

variables
object[]

Array of blocked variable entries.