v1

latestOpenAPI 3.0.1MIT2026-07-26336777.7 KB

Retrieve a list of refunds for a specific payment intent

get/payments/refunds/{intentId}

Path parameters

intentIdstring required

Unique identifier of the payment intent

Response

Successful response with list of refunds

refundIdstring required

Unique identifier of the refund

intentIdstring required

Unique identifier of the payment intent

amountinteger required

The amount in lowest count unit. e.g.: For USD 1, amount is 100 representing 100 cents (The minimum amount should be greater than 1 USD)

currencystring required

Three letter abbreviation of the currency. Refer supported currencies

refundedAtinteger required

Epoch timestamp in milliseconds of when the refund was processed

refundReferenceIdstring

Your identifier for the refund

Example response

[
  {
    "refundId": "rf_fooBOwYsaK50AEaJ",
    "intentId": "in_fooBOwYsaK50AEfK",
    "amount": 2000,
    "currency": "USD",
    "refundedAt": 1727340330123,
    "refundReferenceId": "re123"
  }
]