Skip to main content
POST
/
networks
/
reporting
/
postconversions
Search Post-Conversion Events
curl --request POST \
  --url https://api.eflow.team/v1/networks/reporting/postconversions \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2026-03-01",
  "to": "2026-03-08",
  "timezone_id": 90,
  "currency_id": "USD",
  "columns": [
    {
      "column": "offer"
    },
    {
      "column": "affiliate"
    },
    {
      "column": "event_name"
    }
  ]
}
'
{
  "report": [
    {
      "columns": [
        {
          "column_type": "<string>",
          "id": "<string>",
          "label": "<string>"
        }
      ],
      "reporting": {
        "imp": 123,
        "total_click": 123,
        "ctr": 123,
        "total_cv": 123,
        "cv": 123,
        "view_through_cv": 123,
        "total_event": 123,
        "event": 123,
        "view_through_event": 123,
        "evr": 123,
        "payout": 123,
        "revenue": 123,
        "event_revenue": 123,
        "profit": 123,
        "margin": 123,
        "gross_sales": 123,
        "view_through_gross_sales": 123,
        "avg_sale_value": 123,
        "roas": 123
      }
    }
  ]
}
Returns post-conversion event data aggregated by event type and up to two additional columns. Post-conversion events are actions that occur after the initial conversion, such as upsells, renewals, or custom events.
The date range is limited to a maximum of one year (367 days). Requests exceeding this limit will return an error.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
from
string
required

Start date (format: YYYY-MM-DD or YYYY-MM-DD HH:mm:SS).

to
string
required

End date (format: YYYY-MM-DD or YYYY-MM-DD HH:mm:SS).

timezone_id
integer
required

Timezone ID for the report.

columns
object[]
required

Columns to break down the data by. Must include a pivot column (event_name or advertiser_event_name) plus one or two additional columns.

currency_id
string

Currency code for monetary values. Currently only USD is supported.

query
object

Optional filters to narrow results.

Response

200 - application/json
report
object[]