Skip to main content
POST
/
networks
/
advertisers
/
{advertiserId}
/
productfeeds
Create Product Feed
curl --request POST \
  --url https://api.eflow.team/v1/networks/advertisers/{advertiserId}/productfeeds \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "name": "Main Product Feed",
  "url": "https://example.com/feed.xml"
}
'

Authorizations

X-Eflow-Api-Key
string
header
required

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

Path Parameters

advertiserId
integer
required

The unique advertiser ID.

Body

application/json
name
string
required

Product feed name.

url
string
required

URL of the product feed.

Response

200

Product feed created successfully.