Skip to main content
POST
/
networks
/
reporting
/
adjustments
Create Reporting Adjustment
curl --request POST \
  --url https://api.eflow.team/v1/networks/reporting/adjustments \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_offer_id": 123,
  "network_affiliate_id": 123,
  "from": "<string>",
  "to": "<string>",
  "timezone_id": 123,
  "conversions": 123,
  "revenue": 123,
  "payout": 123,
  "memo": "<string>"
}
'
{}

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
network_offer_id
integer

The offer ID for the adjustment.

network_affiliate_id
integer

The affiliate ID for the adjustment.

from
string

Start date (format: YYYY-MM-DD).

to
string

End date (format: YYYY-MM-DD).

timezone_id
integer

Timezone ID.

conversions
integer

Conversion count adjustment.

revenue
number

Revenue adjustment amount.

payout
number

Payout adjustment amount.

memo
string

Internal notes about the adjustment.

Response

200 - application/json

OK

The created adjustment record.