Skip to main content
PUT
/
affiliates
/
pixels
/
{pixelId}
Update Postback
curl --request PUT \
  --url https://api.eflow.team/v1/affiliates/pixels/{pixelId} \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "delivery_method": "postback",
  "pixel_level": "global",
  "pixel_status": "active",
  "pixel_type": "conversion",
  "postback_url": "https://example.com/postback?tid={transaction_id}&amount={revenue}"
}
'
import requests

url = "https://api.eflow.team/v1/affiliates/pixels/{pixelId}"

payload = {
"delivery_method": "postback",
"pixel_level": "global",
"pixel_status": "active",
"pixel_type": "conversion",
"postback_url": "https://example.com/postback?tid={transaction_id}&amount={revenue}"
}
headers = {
"X-Eflow-Api-Key": "<api-key>",
"Content-Type": "application/json"
}

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

print(response.text)
const options = {
method: 'PUT',
headers: {'X-Eflow-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
delivery_method: 'postback',
pixel_level: 'global',
pixel_status: 'active',
pixel_type: 'conversion',
postback_url: 'https://example.com/postback?tid={transaction_id}&amount={revenue}'
})
};

fetch('https://api.eflow.team/v1/affiliates/pixels/{pixelId}', 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/affiliates/pixels/{pixelId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'delivery_method' => 'postback',
'pixel_level' => 'global',
'pixel_status' => 'active',
'pixel_type' => 'conversion',
'postback_url' => 'https://example.com/postback?tid={transaction_id}&amount={revenue}'
]),
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/affiliates/pixels/{pixelId}"

payload := strings.NewReader("{\n \"delivery_method\": \"postback\",\n \"pixel_level\": \"global\",\n \"pixel_status\": \"active\",\n \"pixel_type\": \"conversion\",\n \"postback_url\": \"https://example.com/postback?tid={transaction_id}&amount={revenue}\"\n}")

req, _ := http.NewRequest("PUT", 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.put("https://api.eflow.team/v1/affiliates/pixels/{pixelId}")
.header("X-Eflow-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"delivery_method\": \"postback\",\n \"pixel_level\": \"global\",\n \"pixel_status\": \"active\",\n \"pixel_type\": \"conversion\",\n \"postback_url\": \"https://example.com/postback?tid={transaction_id}&amount={revenue}\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.eflow.team/v1/affiliates/pixels/{pixelId}")

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

request = Net::HTTP::Put.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"delivery_method\": \"postback\",\n \"pixel_level\": \"global\",\n \"pixel_status\": \"active\",\n \"pixel_type\": \"conversion\",\n \"postback_url\": \"https://example.com/postback?tid={transaction_id}&amount={revenue}\"\n}"

response = http.request(request)
puts response.read_body
{
  "network_pixel_id": 123,
  "network_id": 123,
  "network_affiliate_id": 123,
  "network_offer_id": 123,
  "network_offer_payout_revenue_id": 123,
  "delivery_method": "<string>",
  "pixel_level": "<string>",
  "pixel_status": "<string>",
  "pixel_type": "<string>",
  "postback_url": "<string>",
  "html_code": "<string>",
  "delay_ms": 123,
  "time_created": 1734455015,
  "time_saved": 1734455015,
  "facebook_pixel": {
    "pixel_id": "<string>",
    "event_name": "<string>",
    "access_token": "<string>"
  },
  "tiktok_pixel": {},
  "snapchat_pixel": {},
  "rumble_pixel": {},
  "relationship": {
    "affiliate": {
      "network_affiliate_id": 123,
      "network_id": 123,
      "name": "<string>",
      "account_status": "<string>",
      "network_employee_id": 123,
      "internal_notes": "<string>",
      "has_notifications": true,
      "network_traffic_source_id": 123,
      "account_executive_id": 123,
      "adress_id": 123,
      "default_currency_id": "<string>",
      "is_contact_address_enabled": true,
      "enable_media_cost_tracking_links": true,
      "time_created": 1734455015,
      "time_saved": 1734455015,
      "referrer_id": 123
    },
    "offer": {
      "network_offer_id": 123,
      "network_id": 123,
      "network_advertiser_id": 123,
      "network_offer_group_id": 123,
      "name": "<string>",
      "offer_status": "<string>",
      "network_tracking_domain_id": 123,
      "visibility": "<string>",
      "currency_id": "<string>"
    },
    "payout_revenue": {}
  }
}
Updates an existing postback. This is a full object replacement — all fields must be provided, not just the ones being changed. The postback must belong to the authenticated affiliate.

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.

Path Parameters

pixelId
integer
required

The numeric ID of the postback to update.

Body

application/json
delivery_method
enum<string>
required

How the postback is delivered. Use "postback" for server-to-server URL calls, "html" for HTML/JavaScript pixel code, or "facebook" for Facebook pixel integration.

Available options:
html,
postback,
facebook
pixel_level
enum<string>
required

Scope of the postback. "global" fires for all offers, "specific" fires only for the offer specified by network_offer_id.

Available options:
global,
specific
pixel_status
enum<string>
required

Whether the postback is active or inactive.

Available options:
active,
inactive
pixel_type
enum<string>
required

Type of event that triggers the postback. "conversion" fires on conversions, "post_conversion" fires on post-conversion events, "cpc" fires on clicks.

Available options:
conversion,
post_conversion,
cpc
postback_url
string

The URL to call when the postback fires. Supports macros like {transaction_id}, {revenue}, {offer_id}, {sub1}–{sub10}. Required when delivery_method is "postback".

html_code
string

HTML or JavaScript code for the pixel. Required when delivery_method is "html".

network_offer_id
integer

The offer ID this postback applies to. Required when pixel_level is "specific".

delay_ms
integer
default:0

Delay in milliseconds before firing the postback. Maximum value is 300000 (5 minutes). Defaults to 0.

Required range: x <= 300000
facebook_pixel
object

Facebook pixel configuration. Required when delivery_method is "facebook".

Response

network_pixel_id
integer

Unique identifier for the postback.

network_id
integer

Network ID.

network_affiliate_id
integer

Affiliate ID that owns this postback.

network_offer_id
integer

Associated offer ID (0 if global).

network_offer_payout_revenue_id
integer

Associated payout/revenue ID (0 if not specific).

delivery_method
string

Delivery method (html, postback, facebook).

pixel_level
string

Scope of the postback (global, specific).

pixel_status
string

Whether the postback is active or inactive.

pixel_type
string

Type of event trigger (conversion, post_conversion, cpc).

postback_url
string

URL called when the postback fires.

html_code
string

HTML/JavaScript pixel code.

delay_ms
integer

Delay in milliseconds before firing.

time_created
integer

Unix timestamp when the postback was created.

Example:

1734455015

time_saved
integer

Unix timestamp when the postback was last updated.

Example:

1734455015

facebook_pixel
object | null

Facebook pixel configuration.

tiktok_pixel
object | null

TikTok pixel configuration.

snapchat_pixel
object | null

Snapchat pixel configuration.

rumble_pixel
object | null

Rumble pixel configuration.

relationship
object

Related entity data.