GET
/
refund
/
detail
Refund Details
curl --request GET \
  --url https://nini.monieswitch.com/refund/detail \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Operation is successful",
  "data": {
    "id": "97026964-e833-439a-9a90-8b5fdd1cc978",
    "amount": 400,
    "status": "pending",
    "transactionAmount": 400,
    "customerNote": "I can't find my transaction",
    "merchantNote": "What's the status of this transaction?",
    "createdAt": "2025-05-12T12:48:40.320Z",
    "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

refundId
integer

Response

200 - application/json

Refund Details - Successful

The response is of type object.