---
title: "Get a refund"
method: GET
path: "/refunds/{id}"
---

# Get a refund

`GET /refunds/{id}`

Retrieves a refund by its unique identifier.

## Path parameters

- `id` string, required

## Response `200`

Returns a refund object

- Refund
  - `id` string, required — The unique identifier for this refund.
  - `type` 'card' | 'in_person_card' — The type of refund.
  - `charge` string, required — The unique identifier of the charge being refunded.
  - `amount` number, required — The refund amount in the currency's major unit (e.g., 30.0 for R30.00).
  - `currency` 'ZAR', required — The refund currency in ISO 4217 format. Only "ZAR" is currently supported.
  - `reason` 'fraud' | 'requested_by_customer' | 'duplicate_charge', required — The reason for the refund.
  - `status` 'processing' | 'success' | 'paused' | 'failure', required — The current status of the refund. `processing` indicates the refund is being processed, `success` indicates the refund was processed successfully, `paused` indicates the refund is paused pending resolution, and `failure` indicates the refund did not complete successfully.
  - `nonce` string, required — A unique identifier for this specific resource. Use the nonce to ensure idempotency. If you attempt to create a resource with a nonce that has already been used, an error will be returned.
  - `metadata` Metadata — A set of key-value pairs that you can attach to the resource. Use metadata to store additional, structured information relevant to your integration.
  - `createdAt` string, date-time, required — The UTC timestamp indicating when the refund was created. Formatted as an ISO 8601 string (e.g., 2024-01-15T09:30:00Z).
  - `updatedAt` string, date-time, required — The UTC timestamp indicating when the refund was last modified, such as when the status changes. Formatted as an ISO 8601 string (e.g., 2024-01-15T09:35:00Z).

---

[API](https://skmtc.dev/stitch/apis/stitch-api.md) · [All operations](https://skmtc.dev/stitch/apis/stitch-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stitch/stitch-api/revisions/8c5a258567d0/schema)
