Skip to main content
POST
/
affiliates
/
reporting
/
postconversions
Search Post-Conversion Events
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/reporting/postconversions \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2024-01-01",
  "to": "2024-01-31",
  "timezone_id": 67,
  "query": {
    "filters": []
  }
}
'
{
  "conversions": [
    {
      "network_conversion_id": 123,
      "transaction_id": "<string>",
      "conversion_unix_timestamp": 123,
      "revenue": 123,
      "event_name": "<string>",
      "conversion_status": "<string>",
      "relationship": {
        "offer": {}
      }
    }
  ]
}

Authorizations

X-Eflow-Api-Key
string
header
required

The affiliate's API key generated from the Affiliate Portal. Uses the same X-Eflow-Api-Key header as the Network API, but the key belongs to the affiliate user rather than the network admin.

Body

application/json
from
string
required

Start date. Format YYYY-MM-DD.

to
string
required

End date. Format YYYY-MM-DD.

timezone_id
integer
required

Timezone identifier for the date range.

query
object

Response

200 - application/json

OK

conversions
object[]

Array of post-conversion event records.