GET
/
child
/
transactions
Transactions
curl --request GET \
  --url https://nini.monieswitch.com/child/transactions \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Operation is successful",
  "data": {
    "size": 50,
    "page": 1,
    "totalRecords": 1,
    "totalPages": 1,
    "totalDebitAmount": 0,
    "totalCreditAmount": 1000,
    "totalTransactionValue": 1000,
    "totalTransactionVolume": 1,
    "transactions": [
      {
        "id": "ac7054fc-f847-48c0-90ef-769b73f0ca37",
        "type": "CREDIT",
        "status": "SUCCESS",
        "amount": 1000,
        "charge": 0,
        "narration": "Testing crediting",
        "createdAt": "2025-01-04T22:42:47.593Z",
        "customerMetadata": {
          "userId": "testing123"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

childAccountId
integer
status
string

Optional: PENDING, SUCCESS, FAILED

type
string

Optional: CREDIT, DEBIT

Response

200 - application/json

Transactions

The response is of type object.