Sub-Accounts

List sub-accounts

GET
/api/sandbox/v1/multiaccount/organisation/all

Fetch every sub-account created by your parent organisation.

Authorization

bearerAuth
AuthorizationBearer <token>

The access_token returned by POST /api/v1/get-token.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/api/sandbox/v1/multiaccount/organisation/all"
{  "status": 200,  "message": "SUCCESS",  "data": [    {      "uuid": "b2f0a5ff-e9d8-4347-b46d-6eee8d195617",      "name": "subaccount",      "phoneNumber": "254756989820",      "email": "subacct@example.com",      "uniqueReference": "0129957",      "environment": null,      "collectionCallbackUrl": null,      "parent": false,      "createdAt": "2025-05-01T05:03:52.086189",      "updatedAt": "2025-05-01T05:03:52.086189"    }  ]}