Skip to main content
POST
/
affiliates
/
reporting
/
onhold
Search On-Hold Conversions
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/reporting/onhold \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2024-01-01",
  "to": "2024-01-31",
  "timezone_id": 67,
  "show_conversions": true,
  "query": {
    "filters": []
  }
}
'
{
  "conversions": [
    {
      "on_hold_conversion_id": 123,
      "network_id": 123,
      "holding_period_end": 123,
      "status": "<string>",
      "conversion": {
        "conversion_id": 123,
        "transaction_id": "<string>",
        "conversion_unix_timestamp": 123,
        "revenue": 123,
        "sale_amount": 123,
        "event_name": "<string>",
        "sub1": "<string>",
        "sub2": "<string>",
        "sub3": "<string>",
        "sub4": "<string>",
        "sub5": "<string>",
        "relationship": {
          "offer": {},
          "events_count": 123
        }
      }
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}
Returns conversions currently in on-hold status for the authenticated affiliate. On-hold conversions are pending review or approval before being finalized. Use this to track conversions awaiting advertiser or network approval.

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.

show_conversions
boolean

Must be explicitly set to true to include on-hold conversion records in the response.

show_events
boolean
default:false

Include on-hold post-conversion event records in the response.

query
object

Response

200 - application/json
conversions
object[]

Array of on-hold conversion records.

paging
object