curl --request GET \
--url https://api-next.ofauth.com/v2/access/earnings/chargebacks \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"createdAt": "<string>",
"paymentType": "<string>",
"payment": {
"id": "<string>",
"createdAt": "<string>",
"amounts": {
"gross": 123,
"net": 123,
"fee": 123,
"vat": 123,
"tax": 123
},
"currency": "<string>",
"description": "<string>",
"status": "<string>",
"user": {
"id": 123,
"name": "<string>",
"username": "<string>",
"avatar": "<string>"
}
}
}
],
"hasMore": true,
"nextMarker": 123
}Get a list of chargebacks
Permission Required: earnings:read
curl --request GET \
--url https://api-next.ofauth.com/v2/access/earnings/chargebacks \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"createdAt": "<string>",
"paymentType": "<string>",
"payment": {
"id": "<string>",
"createdAt": "<string>",
"amounts": {
"gross": 123,
"net": 123,
"fee": 123,
"vat": 123,
"tax": 123
},
"currency": "<string>",
"description": "<string>",
"status": "<string>",
"user": {
"id": 123,
"name": "<string>",
"username": "<string>",
"avatar": "<string>"
}
}
}
],
"hasMore": true,
"nextMarker": 123
}Requires a connection via the x-connection-id header.
Start of date range (ISO 8601)
End of date range (ISO 8601)
Pagination marker from previous response
Was this page helpful?