Skip to main content
POST
/
affiliates
/
productfeeds
/
table
List Product Feeds
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/productfeeds/table \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "filters": [
    {
      "filter_id_value": "<string>",
      "resource_type": "<string>"
    }
  ],
  "page": 1,
  "page_size": 50
}
'
{
  "product_feeds": [
    {
      "network_product_feed_id": 123,
      "name": "<string>",
      "feed_url": "<string>",
      "format": "<string>",
      "relationship": {
        "offer": {
          "network_offer_id": 123,
          "name": "<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
filters
object[]

Filters to narrow results.

page
integer
default:1

Page number for pagination.

page_size
integer
default:50

Number of results per page.

Response

200 - application/json

OK

product_feeds
object[]

Array of product feeds.

paging
object