Skip to main content
POST
/
networks
/
offerurls
/
bulk
Bulk Create Offer URLs
curl --request POST \
  --url https://api.eflow.team/v1/networks/offerurls/bulk \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
[
  {
    "network_offer_id": 123,
    "name": "<string>",
    "destination_url": "<string>",
    "url_status": "active",
    "is_apply_specific_affiliates": true,
    "is_hidden_affiliate": true,
    "preview_url": "<string>",
    "network_affiliate_ids": [
      123
    ]
  }
]
'
{
  "urls": [
    {
      "network_offer_url_id": 123,
      "network_id": 123,
      "network_offer_id": 123,
      "name": "<string>",
      "destination_url": "<string>",
      "preview_url": "<string>",
      "url_status": "active",
      "network_affiliate_ids": [
        123
      ],
      "is_apply_specific_affiliates": true,
      "is_hidden_affiliate": true,
      "time_created": 123,
      "time_saved": 123
    }
  ]
}

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
network_offer_id
integer
required

The ID of the offer this URL belongs to.

name
string
required

Descriptive name for this offer URL.

destination_url
string
required

The destination URL where traffic is sent.

url_status
enum<string>
required

Status of the offer URL.

Available options:
active,
paused,
deleted
is_apply_specific_affiliates
boolean
required

Whether this URL is restricted to specific affiliates.

is_hidden_affiliate
boolean
required

Whether this URL is hidden from affiliates.

preview_url
string

Optional preview URL for the offer landing page.

network_affiliate_ids
integer[]

Array of affiliate IDs allowed to use this URL.

Response

200 - application/json

OK

urls
object[]