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": "html",
  "pixel_level": "global",
  "pixel_status": "active",
  "pixel_type": "conversion",
  "postback_url": "<string>",
  "html_code": "<string>",
  "network_offer_id": 123,
  "delay_ms": 0,
  "facebook_pixel": {
    "pixel_id": "<string>",
    "event_name": "<string>",
    "access_token": "<string>"
  }
}
'
{
  "network_affiliate_pixel_id": 123,
  "delivery_method": "<string>",
  "pixel_level": "<string>",
  "pixel_status": "<string>",
  "pixel_type": "<string>",
  "postback_url": "<string>",
  "html_code": "<string>",
  "network_offer_id": 123,
  "delay_ms": 123,
  "facebook_pixel": {
    "pixel_id": "<string>",
    "event_name": "<string>",
    "access_token": "<string>"
  }
}

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}–{sub5}. 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

OK

network_affiliate_pixel_id
integer

Unique identifier for the postback.

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.

network_offer_id
integer

Associated offer ID (0 if global).

delay_ms
integer

Delay in milliseconds before firing.

facebook_pixel
object

Facebook pixel configuration.