v1

latestOpenAPI 3.1.02026-07-2663312285.4 KB
Internal
Chargebacks

Get Chargeback Reversals

Returns all chargeback reversals associated with either a dispute ID or PPRO payment charge ID. Exactly one of [disputeId, paymentChargeId] must be provided.

get/v1/chargeback-reversals

Query parameters

disputeIdstring

Dispute ID starting with 'dispute_' followed by 21 characters. Exactly one of [disputeId, paymentChargeId] must be provided.

paymentChargeIdstring

Payment Charge ID starting with 'charge_' followed by 21 characters. Exactly one of [disputeId, paymentChargeId] must be provided.

Headers

Request-Referencestring

Optional Reference for the request. This is used to identify the request in debugging.

Response

Successfully retrieved all chargeback reversals.

Example response

{
  "data": [
    {
      "id": "cb_20240619XYZabcdefghij or cr_20240619XYZabcdefghij",
      "paymentChargeId": "charge_7s8FcBoJxMwVkWFR3B41p",
      "disputeId": "dispute_20240619XYZabcdefghij",
      "createdAt": "2025-06-19T12:34:56.789Z",
      "updatedAt": "2025-06-19T12:34:56.789Z"
    }
  ]
}