GET
/
child
List Child Accounts
curl --request GET \
  --url https://nini.monieswitch.com/child \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "data": {
    "childAccounts": [
      {
        "id": "5a17ee4f-e846-41d8-af13-b3a99ab4f27e",
        "name": "Testing",
        "status": "ACTIVE",
        "balance": 0,
        "createdAt": "2024-02-28T15:07:26.889Z"
      },
      {
        "id": "a1a34e28-3318-4730-85d0-9b5851a86de7",
        "name": "OWealth",
        "status": "ACTIVE",
        "balance": 0,
        "createdAt": "2024-02-28T15:05:23.276Z"
      }
    ],
    "perPage": 20,
    "currentPage": 1,
    "totalRecords": 2,
    "totalPages": 1
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

name
string
currentPage
integer
perPage
integer

Response

200 - application/json

List Subaccounts

The response is of type object.