Documentation Index
Fetch the complete documentation index at: https://developer.quickei.io/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a paginated list of refunds for your merchant account, with optional filters.
Endpoint
GET https://quickei.io/pay/sandbox/api/v1/refunds
Query Parameters
Filter by original payment transaction ID.
Filter by refund status: pending, completed, failed.
Start date filter (ISO 8601, e.g. 2024-01-01).
End date filter (ISO 8601, e.g. 2024-01-31).
Page number (default: 1).
Results per page (1–100, default: 20).
Example Request
curl -G https://quickei.io/pay/sandbox/api/v1/refunds \
-H "Authorization: Basic {base64_credentials}" \
-d "transaction_id=TRX-98765" \
-d "status=completed" \
-d "per_page=10"
Success Response 200
{
"message": {
"success": ["Refunds retrieved"]
},
"data": {
"refunds": [
{
"refund_id": "RF-20240115-X7Y8Z9",
"transaction_id": "TRX-98765",
"amount": "10.00 EUR",
"raw_amount": 10.00,
"currency": "EUR",
"status": "completed",
"reason": "Item returned",
"reference": "RFD-2024-001",
"created_at": "2024-01-15T16:30:00+00:00"
}
],
"pagination": {
"current_page": 1,
"per_page": 10,
"total": 1,
"last_page": 1
}
}
}