Skip to main content
POST
/
networks
/
reporting
/
postconversions
/
export
Export Post-Conversion Events
curl --request POST \
  --url https://api.eflow.team/v1/networks/reporting/postconversions/export \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2025-01-01",
  "to": "2025-01-31",
  "timezone_id": 67,
  "currency_id": "USD",
  "format": "csv",
  "query": {
    "filters": []
  }
}
'

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.

Exports post-conversion event data in the specified format (CSV or JSON). Accepts the same parameters as the Search Post-Conversion Events endpoint with additional format and columns fields. Post-conversion events are actions that occur after the initial conversion, such as upsells, renewals, or custom events. The response is a file download with the appropriate Content-Type and Content-Disposition headers set.

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 identifier for the date range.

currency_id
string
required

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

format
enum<string>
required

The file format for the export.

Available options:
csv,
json
columns
object[]

Columns to group/pivot data by in the export. Same column options as the entity table endpoint.

query
object

Query configuration with filters and search terms. Same structure as the conversion report endpoint.

Response

200

File download. Content-Type is text/csv or application/json depending on the requested format.