Skip to main content
POST
/
partners
/
reporting
/
conversions
/
chargebacks
Search Chargebacks
curl --request POST \
  --url https://api.eflow.team/v1/partners/reporting/conversions/chargebacks \
  --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": []
  }
}
'
{
  "chargebacks": [
    {
      "chargeback_id": 123,
      "conversion_id": 123,
      "amount": 123,
      "revenue": 123,
      "status": "<string>",
      "chargeback_unix_timestamp": 123,
      "transaction_id": "<string>",
      "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.

query
object

Query configuration for filtering.

Response

200 - application/json

OK

chargebacks
object[]

Array of chargeback objects.

paging
object