Skip to main content
POST
/
affiliates
/
productfeeds
Search Product Feeds
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/productfeeds \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "filters": {
    "network_offer_ids": [
      1,
      2
    ]
  }
}
'
{
  "product_feeds": [
    {
      "network_advertiser_product_feed_id": 123,
      "network_id": 123,
      "network_advertiser_id": 123,
      "name": "<string>",
      "status": "<string>",
      "file_asset_id": 123,
      "date_valid_from": 123,
      "date_valid_to": 123,
      "date_valid_timezone_id": 123,
      "time_created": 1734455015,
      "time_saved": 1734455015,
      "relationship": {
        "document_file_asset": {
          "network_asset_id": 123,
          "content_type": "<string>",
          "filename": "<string>",
          "url": "<string>",
          "file_size": 123,
          "image_width": 123,
          "image_height": 123,
          "optimized_thumbnail_url": "<string>"
        },
        "offers": [
          {
            "network_offer_id": 123,
            "network_id": 123,
            "name": "<string>",
            "offer_status": "<string>"
          }
        ]
      }
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}
Get all product feeds available to the authenticated affiliate. Optionally filter by offer IDs to narrow results. Returns product feed metadata including file assets and associated offers.

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
filters
object

Optional filters to narrow results.

Response

200 - application/json

OK

product_feeds
object[]
paging
object