Skip to main content
GET
/
v1
/
redemptions
/
{id}
/
reversals
List redemption reversals
curl --request GET \
  --url https://api.scrip.dev/v1/redemptions/{id}/reversals \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "amount": "500.00",
      "created_at": "2024-01-15T10:30:00Z",
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "journal_entry_id": "550e8400-e29b-41d4-a716-446655440002",
      "quantity": 1,
      "reason": "Customer refund request",
      "redemption_id": "550e8400-e29b-41d4-a716-446655440001"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "YWJjMTIz"
  }
}
Lists all reversals applied to a redemption. Each entry includes the amount or quantity reversed, the reason, and a timestamp. A redemption can have multiple partial reversals. Results are returned in chronological order. Use this to audit reversal history or check remaining headroom before issuing another partial reversal.
For usage patterns and examples, see the Redemptions guide.

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header.

Path Parameters

id
string<uuid>
required

Redemption ID

Query Parameters

limit
integer

Number of items to return (default 50, max 200)

Required range: x >= 1
cursor
string

Pagination cursor

Response

List of reversals

data
object[]

Data contains the list of items

pagination
object

Pagination contains cursor information for fetching more results