---
title: "Get Chargeback Reversals"
method: GET
path: "/v1/chargeback-reversals"
tags: ["Internal", "Chargebacks"]
---

# Get Chargeback Reversals

`GET /v1/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.

## Query parameters

- `disputeId` string — Dispute ID starting with 'dispute_' followed by 21 characters. Exactly one of [disputeId, paymentChargeId] must be provided.
- `paymentChargeId` string — Payment Charge ID starting with 'charge_' followed by 21 characters. Exactly one of [disputeId, paymentChargeId] must be provided.

## Headers

- `Request-Reference` string

## Response `200`

Successfully retrieved all chargeback reversals.

- ChargebackReversalResponse
  - `pagination` Pagination
    - `totalPages` integer
    - `totalCount` integer
    - `currentPage` integer
  - `data` ChargebackReversalDetails[]
    - `id` string — The unique identifier.
    - `amount` Amount
      - `value` integer, required
      - `currency` string, required
    - `reason` 'PDSP_AUTH_001' | 'PDSP_AUTH_002' | 'PDSP_AUTH_003' | 'PDSP_AUTH_004' | 'PDSP_PROD_001' | 'PDSP_PROD_002' | 'PDSP_PROD_003' | 'PDSP_PROD_004' | 'PDSP_PROD_005' | 'PDSP_CANC_001' | 'PDSP_CANC_002' | 'PDSP_CANC_003' | 'PDSP_CANC_004' | 'PDSP_SUBS_001' | 'PDSP_SUBS_002' | 'PDSP_SUBS_003' | 'PDSP_SUBS_004' | 'PDSP_GEN_001' | 'PDSP_GEN_002' | 'PDSP_GEN_003' — Defines the reason.
    - `paymentChargeId` string — The payment charge identifier.
    - `disputeId` string — The unique identifier of the associated dispute.
    - `transferStatus` 'EXPECTED' | 'FAILED' | 'SETTLED' — Status of the transfer for settlement tracking.
    - `createdAt` string, date-time — Date and time when the entity was created in PPRO.
    - `updatedAt` string, date-time — Date and Time when the entity was last updated.
    - `_links` object

## Other responses

- `400` — Bad Request
- `404` — Not found
- `409` — Duplicate request received with the same idempotency key.
- `500` — Internal Server Error

---

[API](https://skmtc.net/ppro/apis/payment-charges.md) · [All operations](https://skmtc.net/ppro/apis/payment-charges/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ppro/payment-charges/revisions/112e8bb4c815/schema)
