Skip to main content
POST
/
networks
/
conversions
/
reporting
/
transaction_ids
Create Conversions with Transaction IDs
curl --request POST \
  --url https://api.eflow.team/v1/networks/conversions/reporting/transaction_ids \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "is_now": true,
  "offer_id": 33,
  "timezone_id": 90,
  "event_id": 0,
  "revenue_amount": 2,
  "is_payout_amount_submitted": false,
  "is_revenue_amount_submitted": true,
  "transaction_ids": [
    "300b69de1ba44b5fb84ac4c013436511",
    "300b69de1ba44b5fb84ac4c013436512",
    "300b69de1ba44b5fb84ac4c013436513"
  ]
}
'
import requests

url = "https://api.eflow.team/v1/networks/conversions/reporting/transaction_ids"

payload = {
"is_now": True,
"offer_id": 33,
"timezone_id": 90,
"event_id": 0,
"revenue_amount": 2,
"is_payout_amount_submitted": False,
"is_revenue_amount_submitted": True,
"transaction_ids": ["300b69de1ba44b5fb84ac4c013436511", "300b69de1ba44b5fb84ac4c013436512", "300b69de1ba44b5fb84ac4c013436513"]
}
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({
is_now: true,
offer_id: 33,
timezone_id: 90,
event_id: 0,
revenue_amount: 2,
is_payout_amount_submitted: false,
is_revenue_amount_submitted: true,
transaction_ids: [
'300b69de1ba44b5fb84ac4c013436511',
'300b69de1ba44b5fb84ac4c013436512',
'300b69de1ba44b5fb84ac4c013436513'
]
})
};

fetch('https://api.eflow.team/v1/networks/conversions/reporting/transaction_ids', 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/conversions/reporting/transaction_ids",
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([
'is_now' => true,
'offer_id' => 33,
'timezone_id' => 90,
'event_id' => 0,
'revenue_amount' => 2,
'is_payout_amount_submitted' => false,
'is_revenue_amount_submitted' => true,
'transaction_ids' => [
'300b69de1ba44b5fb84ac4c013436511',
'300b69de1ba44b5fb84ac4c013436512',
'300b69de1ba44b5fb84ac4c013436513'
]
]),
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/conversions/reporting/transaction_ids"

payload := strings.NewReader("{\n \"is_now\": true,\n \"offer_id\": 33,\n \"timezone_id\": 90,\n \"event_id\": 0,\n \"revenue_amount\": 2,\n \"is_payout_amount_submitted\": false,\n \"is_revenue_amount_submitted\": true,\n \"transaction_ids\": [\n \"300b69de1ba44b5fb84ac4c013436511\",\n \"300b69de1ba44b5fb84ac4c013436512\",\n \"300b69de1ba44b5fb84ac4c013436513\"\n ]\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/conversions/reporting/transaction_ids")
.header("X-Eflow-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"is_now\": true,\n \"offer_id\": 33,\n \"timezone_id\": 90,\n \"event_id\": 0,\n \"revenue_amount\": 2,\n \"is_payout_amount_submitted\": false,\n \"is_revenue_amount_submitted\": true,\n \"transaction_ids\": [\n \"300b69de1ba44b5fb84ac4c013436511\",\n \"300b69de1ba44b5fb84ac4c013436512\",\n \"300b69de1ba44b5fb84ac4c013436513\"\n ]\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.eflow.team/v1/networks/conversions/reporting/transaction_ids")

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 \"is_now\": true,\n \"offer_id\": 33,\n \"timezone_id\": 90,\n \"event_id\": 0,\n \"revenue_amount\": 2,\n \"is_payout_amount_submitted\": false,\n \"is_revenue_amount_submitted\": true,\n \"transaction_ids\": [\n \"300b69de1ba44b5fb84ac4c013436511\",\n \"300b69de1ba44b5fb84ac4c013436512\",\n \"300b69de1ba44b5fb84ac4c013436513\"\n ]\n}"

response = http.request(request)
puts response.read_body
{
  "result": true
}
Create conversions by providing an offer, a corresponding event, and a list of transaction IDs. Each transaction ID must match a click that belongs to the specified offer. One conversion is created per transaction ID. Conversions can be created as of now or for a specific date in the past.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
offer_id
integer
required

The offer ID under which the conversions will be created.

event_id
integer
required

The offer event ID. Use 0 for the default base conversion event.

transaction_ids
string[]
required

List of transaction IDs to create conversions for. Each transaction ID must match a click belonging to the specified offer.

timezone_id
integer
required

Timezone ID for the conversions. Can be found using the metadata API.

is_now
boolean
required

When true, conversions are recorded as of now. When false, you must provide a date value.

date
string

Specific date and time for the conversions when is_now is false. Format: YYYY-MM-DD HH:mm:ss.

internal_notes
string

Internal notes attached to each conversion. Not visible to affiliates.

revenue_amount
number

Revenue amount per conversion.

is_revenue_amount_submitted
boolean

Whether the revenue_amount value should be applied. Must be true for the revenue_amount to take effect.

payout_amount
number

Payout amount per conversion.

is_payout_amount_submitted
boolean

Whether the payout_amount value should be applied. Must be true for the payout_amount to take effect.

sale_amount
number

Sale amount value per conversion.

adv1
string

Advertiser sub-parameter 1.

adv2
string

Advertiser sub-parameter 2.

adv3
string

Advertiser sub-parameter 3.

adv4
string

Advertiser sub-parameter 4.

adv5
string

Advertiser sub-parameter 5.

adv6
string

Advertiser sub-parameter 6.

adv7
string

Advertiser sub-parameter 7.

adv8
string

Advertiser sub-parameter 8.

adv9
string

Advertiser sub-parameter 9.

adv10
string

Advertiser sub-parameter 10.

email
string

Email value to attach to each conversion.

coupon_code
string

Coupon code value to attach to each conversion.

order_id
string

Order ID value to attach to each conversion.

Response

200 - application/json
result
boolean

Whether the conversions were created successfully.