Skip to main content
POST
/
networks
/
offerurls
Create Offer URL
curl --request POST \
  --url https://api.eflow.team/v1/networks/offerurls \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_offer_id": 6,
  "name": "Offer URL Name",
  "destination_url": "https://example.com/lp2?tid={transaction_id}",
  "preview_url": "https://example.com/preview",
  "url_status": "active",
  "is_apply_specific_affiliates": true,
  "network_affiliate_ids": [
    7,
    14
  ],
  "is_hidden_affiliate": true
}
'
import requests

url = "https://api.eflow.team/v1/networks/offerurls"

payload = {
"network_offer_id": 6,
"name": "Offer URL Name",
"destination_url": "https://example.com/lp2?tid={transaction_id}",
"preview_url": "https://example.com/preview",
"url_status": "active",
"is_apply_specific_affiliates": True,
"network_affiliate_ids": [7, 14],
"is_hidden_affiliate": True
}
headers = {
"X-Eflow-Api-Key": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'X-Eflow-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
network_offer_id: 6,
name: 'Offer URL Name',
destination_url: 'https://example.com/lp2?tid={transaction_id}',
preview_url: 'https://example.com/preview',
url_status: 'active',
is_apply_specific_affiliates: true,
network_affiliate_ids: [7, 14],
is_hidden_affiliate: true
})
};

fetch('https://api.eflow.team/v1/networks/offerurls', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eflow.team/v1/networks/offerurls",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'network_offer_id' => 6,
'name' => 'Offer URL Name',
'destination_url' => 'https://example.com/lp2?tid={transaction_id}',
'preview_url' => 'https://example.com/preview',
'url_status' => 'active',
'is_apply_specific_affiliates' => true,
'network_affiliate_ids' => [
7,
14
],
'is_hidden_affiliate' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Eflow-Api-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.eflow.team/v1/networks/offerurls"

payload := strings.NewReader("{\n \"network_offer_id\": 6,\n \"name\": \"Offer URL Name\",\n \"destination_url\": \"https://example.com/lp2?tid={transaction_id}\",\n \"preview_url\": \"https://example.com/preview\",\n \"url_status\": \"active\",\n \"is_apply_specific_affiliates\": true,\n \"network_affiliate_ids\": [\n 7,\n 14\n ],\n \"is_hidden_affiliate\": true\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("X-Eflow-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.eflow.team/v1/networks/offerurls")
.header("X-Eflow-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"network_offer_id\": 6,\n \"name\": \"Offer URL Name\",\n \"destination_url\": \"https://example.com/lp2?tid={transaction_id}\",\n \"preview_url\": \"https://example.com/preview\",\n \"url_status\": \"active\",\n \"is_apply_specific_affiliates\": true,\n \"network_affiliate_ids\": [\n 7,\n 14\n ],\n \"is_hidden_affiliate\": true\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.eflow.team/v1/networks/offerurls")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"network_offer_id\": 6,\n \"name\": \"Offer URL Name\",\n \"destination_url\": \"https://example.com/lp2?tid={transaction_id}\",\n \"preview_url\": \"https://example.com/preview\",\n \"url_status\": \"active\",\n \"is_apply_specific_affiliates\": true,\n \"network_affiliate_ids\": [\n 7,\n 14\n ],\n \"is_hidden_affiliate\": true\n}"

response = http.request(request)
puts response.read_body
{
  "network_offer_url_id": 123,
  "network_id": 123,
  "network_offer_id": 123,
  "name": "<string>",
  "destination_url": "<string>",
  "preview_url": "<string>",
  "network_affiliate_ids": [
    123
  ],
  "is_apply_specific_affiliates": true,
  "is_hidden_affiliate": true,
  "time_created": 1734455015,
  "time_saved": 1734455015,
  "remote_offer_resource": {
    "network_offer_id": 123,
    "network_id": 123,
    "resource_type": "<string>",
    "remote_resource_id": "<string>",
    "resource_id": 123,
    "last_value_md5": "<string>",
    "json_config": "<string>",
    "json_data": "<string>",
    "time_created": 1734455015,
    "time_saved": 1734455015
  }
}
Create a new offer URL. You must specify the associated offer, the destination URL, and the URL status. Optionally configure affiliate targeting to restrict which affiliates can use this URL.

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 to which this offer URL is associated.

name
string
required

The name of the offer URL.

destination_url
string
required

The URL the offer URL will redirect to.

is_apply_specific_affiliates
boolean
required

Determines whether this offer URL applies to all affiliates or only to a select few. When true, the network_affiliate_ids array must be filled.

is_hidden_affiliate
boolean
required

Determines whether affiliates will see this offer URL or not in the affiliate UI / API.

preview_url
string

A preview URL, if it exists.

url_status
enum<string>

Status of the offer URL setting.

Available options:
active,
paused,
deleted
network_affiliate_ids
integer[] | null

The IDs of the affiliates that are to be affected by the offer URL. Only relevant when is_apply_specific_affiliates is true.

Response

200 - application/json
network_offer_url_id
integer

Unique offer URL ID.

network_id
integer

Network ID.

network_offer_id
integer

The ID of the offer to which this offer URL is associated.

name
string

The name of the offer URL.

destination_url
string

The URL the offer URL will redirect to.

preview_url
string

A preview URL, if it exists.

url_status
enum<string>

Status of the offer URL setting.

Available options:
active,
paused,
deleted
network_affiliate_ids
integer[] | null

The IDs of the affiliates that are to be affected by the offer URL. Only relevant when is_apply_specific_affiliates is true.

is_apply_specific_affiliates
boolean

Determines whether this offer URL applies to all affiliates or only to a select few. When true, the network_affiliate_ids array must be filled.

is_hidden_affiliate
boolean

Determines whether affiliates will see this offer URL or not in the affiliate UI / API.

time_created
integer

Unix timestamp of creation.

Example:

1734455015

time_saved
integer

Unix timestamp of last update.

Example:

1734455015

remote_offer_resource
object

Remote offer resource configuration.