Get Refund
Retrieve details of a specific refund by ID.
GET
https://api.zenpayz.com/merchant/api/v1/refund-intents/{refundId}Bearer · API key
Request
Path Parameters
| Parameter | Type | Description |
|---|---|---|
refundId REQUIRED | string | Refund ID (e.g., ref_xxxxx) |
Headers
| Header | Description |
|---|---|
Authorization REQUIRED | Bearer {api_key} |
X-Signature REQUIRED | HMAC-SHA256 signature |
X-Timestamp REQUIRED | ISO 8601 timestamp |
X-Secret-Salt REQUIRED | Secret salt for HMAC validation |
Response
Success (200 OK)
{
"success": true,
"data": {
"refundId": "refund_1774683026458_oann5ibjf",
"merchantId": "ZP_FIN_1774592804_0781001264",
"customerId": "cust_mn8yfewm_37ntht",
"transactionId": "txn_1774619159530_1_mn8yfmph_5iwb9b",
"paymentIntentId": "pi_1774619159530_66d8s8v25",
"amount": 30,
"originalAmount": 100,
"currency": "INR",
"refundType": "partial",
"status": "completed",
"tspProvider": "sulifu_pay",
"externalRefundId": "ext_ref_123",
"reason": "Customer requested refund",
"createdAt": "2026-03-28T07:30:26.479Z",
"completedAt": "2026-03-28T07:35:12.000Z",
"failureReason": null,
"processingTimeMs": 285633
}
}
Examples
- cURL
- SDK
curl -X GET "https://api.zenpayz.com/merchant/api/v1/refund-intents/ref_xxxxx" \
-H "Authorization: Bearer zp_test_xxxxx" \
-H "X-Timestamp: 2024-01-15T10:30:00.000Z" \
-H "X-Signature: a1b2c3d4e5f6..." \
-H "X-Secret-Salt: your_secret_salt"
const refund = await zenpays.refunds.get('ref_xxxxx');
console.log(`Status: ${refund.status}`);