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 '
{
  "timezone_id": 90,
  "page": 1,
  "page_size": 50
}
'
{
  "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": 1734455015,
      "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
  }
}
Returns a paginated list of data supplement records for the network. Supports filtering by supplement source, offer, affiliate, and source ID, as well as text search within supplement details. Required field is timezone_id. Related entities (offer and affiliate basic info) are included in the relationship field of each record.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
timezone_id
integer
required

Timezone identifier for the date range.

from
string

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

to
string

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

page
integer

Page number for pagination (1-based).

page_size
integer

Number of records per page.

query
object

Query configuration with optional filters and search terms.

Response

200 - application/json
data_supplements
object[]

Array of data supplement table records.

paging
object

Pagination information.