unified-payments
  1. Refunds
unified-payments
  • Unified Payments
    • Overview
    • Encryption
    • Authentication
    • Card (Non-3DS)
    • Card (3DS)
    • Apple Pay
  • Unified Payments API
    • Payments
      • Initiate Payment
      • List Payments
      • Get Payment
    • Refunds
      • Initiate Refund
        POST
      • List Refunds
        GET
      • Get Refund
        GET
  • Schemas
    • Schemas
      • SuccessResponse
    • ErrorResponse
    • PaymentRequest
    • PaymentResponse
    • WebhookPayload
  1. Refunds

Get Refund

GET
/v2/refunds/{refund_id}
Retrieve a refund

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v2/refunds/' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "status": "success",
    "data": {
        "status": "successful",
        "message": "Refund fetched successfully",
        "data": {
            "id": "01KET7A8HRRDK9S3HP5Q927PR7",
            "merchant_reference": "d11bc434-91ca-4127-b2ff-75a2b6440ccb",
            "payment_id": "01KDH46CNWCPF25GQVHSWRWMWV",
            "amount": 5000,
            "currency": "GBP",
            "status": "completed",
            "created": 1768259134008
        }
    }
}
Modified at 2026-01-13 12:30:56
Previous
List Refunds
Next
SuccessResponse
Built with