Skip to main content
POST
/
affiliates
/
offerstable
List Offers
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/offerstable \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "search_terms": [],
  "filters": [],
  "page": 1,
  "page_size": 50
}
'
{
  "offers": [
    {
      "network_offer_id": 123,
      "name": "<string>",
      "offer_status": "<string>",
      "visibility": "<string>",
      "relationship": {}
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}

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
search_terms
object[]

Search terms to match against offer names and IDs.

filters
object[]

Filters to narrow results.

page
integer
default:1

Page number for pagination (1-based).

page_size
integer
default:50

Number of results per page.

Response

200 - application/json

OK

offers
object[]

Array of matching offers.

paging
object