GET
/
refund
Refund List
curl --request GET \
  --url https://nini.monieswitch.com/refund \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Operation is successful",
  "data": {
    "size": 20,
    "page": 1,
    "totalRecords": 1,
    "totalPages": 1,
    "refunds": [
      {
        "id": "97026964-e833-439a-9a90-8b5fdd1cc978",
        "merchantId": "3aed8fe9-2c60-48fe-bea4-71ea8c8f3c84",
        "transactionId": "d508258c-2ff6-4c4d-9409-22077929abf7",
        "mode": "SANDBOX",
        "amount": 400,
        "transactionAmount": 400,
        "customerNote": "I can't find my transaction",
        "merchantNote": "What's the status of this transaction?",
        "status": "pending",
        "createdAt": "2025-05-12T12:48:40.320Z",
        "updatedAt": "2025-05-12T12:48:40.320Z",
        "deletedAt": null,
        "merchant": {
          "id": "3aed8fe9-2c60-48fe-bea4-71ea8c8f3c84",
          "businessName": "Kimpembe"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
perPage
integer
status
string

pending, processing, failed, processed

transactionId
integer

Optional. Search wallet payouts

startDate
string
endDate
string

Response

200 - application/json

Refund List - Successful

The response is of type object.