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"
}
'
{
  "result": true
}

Documentation Index

Fetch the complete documentation index at: https://developers.everflow.io/llms.txt

Use this file to discover all available pages before exploring further.

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.

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.