Skip to main content
POST
/
networks
/
supplements
Create Data Supplement
curl --request POST \
  --url https://api.eflow.team/v1/networks/supplements \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "unix_timestamp": 1709251200,
  "supplement_source": "generic",
  "network_offer_id": 1,
  "network_affiliate_id": 7
}
'
import requests

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

payload = {
"unix_timestamp": 1709251200,
"supplement_source": "generic",
"network_offer_id": 1,
"network_affiliate_id": 7
}
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({
unix_timestamp: 1709251200,
supplement_source: 'generic',
network_offer_id: 1,
network_affiliate_id: 7
})
};

fetch('https://api.eflow.team/v1/networks/supplements', 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/supplements",
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([
'unix_timestamp' => 1709251200,
'supplement_source' => 'generic',
'network_offer_id' => 1,
'network_affiliate_id' => 7
]),
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/supplements"

payload := strings.NewReader("{\n \"unix_timestamp\": 1709251200,\n \"supplement_source\": \"generic\",\n \"network_offer_id\": 1,\n \"network_affiliate_id\": 7\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/supplements")
.header("X-Eflow-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"unix_timestamp\": 1709251200,\n \"supplement_source\": \"generic\",\n \"network_offer_id\": 1,\n \"network_affiliate_id\": 7\n}")
.asString();
require 'uri'
require 'net/http'

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

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 \"unix_timestamp\": 1709251200,\n \"supplement_source\": \"generic\",\n \"network_offer_id\": 1,\n \"network_affiliate_id\": 7\n}"

response = http.request(request)
puts response.read_body
{
  "network_data_supplement_id": 123,
  "network_id": 123,
  "unix_timestamp": 123,
  "supplement_source": "<string>",
  "network_offer_id": 123,
  "network_affiliate_id": 123,
  "source_id": "<string>",
  "currency_id": "<string>",
  "reporting": {},
  "time_created": 1734455015
}
Creates a new data supplement record. Data supplements allow you to ingest third-party reporting data and merge it with your Everflow reporting. The request body is a flat object representing the supplement data, including the source integration type, offer/affiliate mapping, tracking parameters, and reporting metrics. Returns the created supplement record with its assigned ID and timestamps.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
unix_timestamp
integer
required

Unix timestamp for when the supplement data applies.

supplement_source
enum<string>
required

The third-party source of the supplement data.

Available options:
appsflyer,
adjust,
google_ads_cost,
tiktok_ads_mbc,
generic
network_offer_id
integer
required

The Everflow offer ID to associate the supplement data with.

network_affiliate_id
integer
required

The Everflow affiliate ID to associate the supplement data with.

source_id
string

Source identifier from the third-party platform.

sub1
string

Sub-parameter 1 value.

sub2
string

Sub-parameter 2 value.

sub3
string

Sub-parameter 3 value.

sub4
string

Sub-parameter 4 value.

sub5
string

Sub-parameter 5 value.

sub6
string

Sub-parameter 6 value.

sub7
string

Sub-parameter 7 value.

sub8
string

Sub-parameter 8 value.

sub9
string

Sub-parameter 9 value.

sub10
string

Sub-parameter 10 value.

adv1
string

Advertiser parameter 1 value.

adv2
string

Advertiser parameter 2 value.

adv3
string

Advertiser parameter 3 value.

adv4
string

Advertiser parameter 4 value.

adv5
string

Advertiser parameter 5 value.

adv6
string

Advertiser parameter 6 value.

adv7
string

Advertiser parameter 7 value.

adv8
string

Advertiser parameter 8 value.

adv9
string

Advertiser parameter 9 value.

adv10
string

Advertiser parameter 10 value.

currency_id
string

Currency code for monetary values (e.g., USD).

reporting
object

Reporting metrics to associate with this supplement record. These metrics get merged into your Everflow reporting.

network_offer_payout_revenue_id
integer

Optional payout/revenue setting ID to associate with this supplement.

source_details_json
string

Raw JSON string containing additional source-specific details.

relationship
object

Source-specific relationship data. Include the sub-object matching the supplement_source type.

Response

200 - application/json
network_data_supplement_id
integer

Unique ID of the created supplement record.

network_id
integer

Network ID.

unix_timestamp
integer

Timestamp the supplement data applies to.

supplement_source
string

The source integration type.

network_offer_id
integer
network_affiliate_id
integer
source_id
string
currency_id
string
reporting
object

The reporting metrics.

time_created
integer

Unix timestamp of when the record was created.

Example:

1734455015