Skip to main content
POST
/
partners
/
reporting
/
conversions
Search Conversions
curl --request POST \
  --url https://api.eflow.team/v1/partners/reporting/conversions \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2024-01-01",
  "to": "2024-01-31",
  "timezone_id": 67,
  "currency_id": "USD",
  "show_conversions": true,
  "show_events": false,
  "query": {
    "filters": []
  }
}
'
{
  "conversions": [
    {
      "conversion_id": 123,
      "conversion_unix_timestamp": 123,
      "amount": 123,
      "revenue": 123,
      "sale_amount": 123,
      "is_event": true,
      "event_name": "<string>",
      "is_view_through": true,
      "transaction_id": "<string>",
      "country": "<string>",
      "country_code": "<string>",
      "time_created": 123,
      "relationship": {
        "offer": {
          "network_offer_id": 123,
          "name": "<string>"
        },
        "network": {
          "network_id": 123,
          "name": "<string>"
        }
      }
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}

Authorizations

X-Eflow-Api-Key
string
header
required

The marketplace partner's API key. Uses the X-Eflow-Api-Key header. The key belongs to the marketplace partner user.

Body

application/json
from
string
required

Start date for the reporting period. Format YYYY-MM-DD.

to
string
required

End date for the reporting period. Format YYYY-MM-DD.

timezone_id
integer
required

Timezone identifier for the request.

currency_id
string
required

Currency code for monetary values (e.g. "USD").

show_conversions
boolean
required

Whether to include base conversions in the results.

show_events
boolean
required

Whether to include post-conversion events in the results.

query
object

Query configuration for filtering.

Response

200 - application/json

OK

conversions
object[]

Array of conversion objects.

paging
object