Skip to main content
POST
/
networks
/
conversions
/
reporting
Create Conversions without Transaction IDs
curl --request POST \
  --url https://api.eflow.team/v1/networks/conversions/reporting \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "is_now": true,
  "offer_id": 33,
  "affiliate_id": 39,
  "timezone_id": 90,
  "event_id": 0,
  "number_of_conversions": 2,
  "order_id": "321312"
}
'
import requests

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

payload = {
"is_now": True,
"offer_id": 33,
"affiliate_id": 39,
"timezone_id": 90,
"event_id": 0,
"number_of_conversions": 2,
"order_id": "321312"
}
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,
affiliate_id: 39,
timezone_id: 90,
event_id: 0,
number_of_conversions: 2,
order_id: '321312'
})
};

fetch('https://api.eflow.team/v1/networks/conversions/reporting', 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",
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,
'affiliate_id' => 39,
'timezone_id' => 90,
'event_id' => 0,
'number_of_conversions' => 2,
'order_id' => '321312'
]),
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"

payload := strings.NewReader("{\n \"is_now\": true,\n \"offer_id\": 33,\n \"affiliate_id\": 39,\n \"timezone_id\": 90,\n \"event_id\": 0,\n \"number_of_conversions\": 2,\n \"order_id\": \"321312\"\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")
.header("X-Eflow-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"is_now\": true,\n \"offer_id\": 33,\n \"affiliate_id\": 39,\n \"timezone_id\": 90,\n \"event_id\": 0,\n \"number_of_conversions\": 2,\n \"order_id\": \"321312\"\n}")
.asString();
require 'uri'
require 'net/http'

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

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 \"affiliate_id\": 39,\n \"timezone_id\": 90,\n \"event_id\": 0,\n \"number_of_conversions\": 2,\n \"order_id\": \"321312\"\n}"

response = http.request(request)
puts response.read_body
{
  "result": true
}
Create conversions for an offer and affiliate without requiring transaction IDs. Specify the number of conversions to create (between 1 and 50). 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.

affiliate_id
integer
required

The affiliate (partner) ID for the conversions.

number_of_conversions
integer
required

Number of conversions to create (between 1 and 50).

Required range: 1 <= x <= 50
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.