Create refund for payment
Creates a refund against an existing captured payment. The paymentId is taken from the URL path. Omit amount to refund the full remaining capturable amount, or specify a partial amount for a partial refund. Multiple partial refunds are supported until the captured amount is exhausted. Pass an Idempotency-Key header to safely retry without double-refunding.
Authorization
bearer In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://api.miracle.com/v1/payments/string/refund" \ -H "Content-Type: application/json" \ -d '{}'{
"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"
}
}List payments
Returns a paginated list of payments visible to the caller. Merchant-scoped API keys are auto-restricted to their own merchant. Filters: `merchantId`, `status`, `livemode`. Uses cursor-based pagination — pass `cursor` from a previous response to fetch the next page. Default page size is 20, maximum 100.
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.