Skip to main content
POST
/
affiliates
/
pixelstable
List Postbacks
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/pixelstable \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "search_terms": [],
  "filters": {
    "pixel_status": "active"
  },
  "page": 1,
  "page_size": 50
}
'
{
  "pixels": [
    {
      "network_affiliate_pixel_id": 123,
      "delivery_method": "<string>",
      "pixel_level": "<string>",
      "pixel_status": "<string>",
      "pixel_type": "<string>",
      "postback_url": "<string>",
      "html_code": "<string>",
      "network_offer_id": 123,
      "delay_ms": 123,
      "facebook_pixel": {
        "pixel_id": "<string>",
        "event_name": "<string>",
        "access_token": "<string>"
      }
    }
  ],
  "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
string[]

Search terms to filter postbacks.

filters
object

Filter criteria for the search.

page
integer
default:1

Page number (1-based).

page_size
integer
default:50

Number of results per page.

Response

200 - application/json

OK

pixels
object[]

Array of postbacks matching the search criteria.

paging
object