Miracle Docs
Refunds

Get refund by ID

Returns details for a single refund, including its current lifecycle status and link back to the originating payment. Soft-deleted refunds are not returned.

GET
/v1/refunds/{id}
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Response Body

application/json

curl -X GET "https://api.miracle.com/v1/refunds/string"
{
  "data": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "tenantId": "f97df110-f4de-492e-8849-4a6af68026b0",
    "livemode": true,
    "paymentId": "472e651e-5a1e-424d-8098-23858bf03ad7",
    "status": "pending",
    "amount": {
      "currency": "string",
      "valueMinor": 0
    },
    "reason": "string",
    "merchantReference": "string",
    "statusReason": "string",
    "items": [
      {
        "id": "string",
        "productId": "string",
        "label": "string",
        "description": "string",
        "imageUrl": "string",
        "unitAmount": {
          "currency": "string",
          "valueMinor": 0
        },
        "quantity": 1,
        "taxRate": 0,
        "taxAmount": {
          "currency": "string",
          "valueMinor": 0
        },
        "metadata": {
          "property1": "string",
          "property2": "string"
        }
      }
    ],
    "metadata": {
      "property1": "string",
      "property2": "string"
    },
    "createdAt": "string",
    "updatedAt": "string"
  }
}
Empty

On this page