Skip to main content
POST
/
networks
/
supplements
/
table
List Data Supplements
curl --request POST \
  --url https://api.eflow.team/v1/networks/supplements/table \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2025-01-01",
  "to": "2025-01-31",
  "timezone_id": 67,
  "query": {
    "filters": {
      "supplement_source": "appsflyer",
      "network_offer_ids": [],
      "network_affiliate_ids": []
    },
    "search_terms": []
  }
}
'
{
  "data_supplements": [
    {
      "network_data_supplement_id": 123,
      "network_id": 123,
      "unix_timestamp": 123,
      "supplement_source": "<string>",
      "network_offer_id": 123,
      "network_affiliate_id": 123,
      "source_id": "<string>",
      "sub1": "<string>",
      "sub2": "<string>",
      "sub3": "<string>",
      "sub4": "<string>",
      "sub5": "<string>",
      "adv1": "<string>",
      "adv2": "<string>",
      "adv3": "<string>",
      "adv4": "<string>",
      "adv5": "<string>",
      "currency_id": "<string>",
      "reporting": {},
      "time_created": 123,
      "source_details": "<string>",
      "relationship": {
        "offer": {
          "network_offer_id": 123,
          "network_id": 123,
          "name": "<string>"
        },
        "affiliate": {
          "network_affiliate_id": 123,
          "network_id": 123,
          "name": "<string>"
        }
      }
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
from
string
required

Start date (format: YYYY-MM-DD).

to
string
required

End date (format: YYYY-MM-DD).

timezone_id
integer
required

Timezone identifier for the date range.

query
object

Query configuration with optional filters and search terms.

Response

200 - application/json

OK

data_supplements
object[]

Array of data supplement table records.

paging
object

Pagination information.