Get All Sub-Accounts

This endpoint helps get the list of all sub-account created under your account.

GET https://api.oneappgo.com/v1/business/subaccounts

Headers

Name
Type
Description

authorization*

String

SECRET_KEY

curl --location 'https://api.oneappgo.com/v1/business/subaccounts' \
--header 'Authorization: Bearer SECRET_KEY' \

Sample Response

{
  "status": true,
  "message": "Success",
  "data": [
    
    {
      "name": "Olamide kabiru",
      "email": "[email protected]",
      "phoneno": "09010029133",
      "balance": "800000.00",
      "customer_code": "",
      "tracking": "00109010029133",
      "smsalert": false,
      "date_created": "04, February 2025",
      "account_number": "",
      "bankname": "",
      "acctname": "",
      "accountstatus": "Active"
    },
    
    {
      "name": "Olajide Olatunji",
      "email": "[email protected]",
      "phoneno": "07068900000",
      "balance": "1000000.00",
      "customer_code": "00107068900000",
      "tracking": "00107068900000",
      "smsalert": true,
      "date_created": "30, May 2024",
      "account_number": "",
      "bankname": "",
      "acctname": "",
      "accountstatus": "Active"
    },
    {
      "name": "CHRISTOPHER JOY FALANA",
      "email": "",
      "phoneno": "08108048335",
      "balance": "51000.00",
      "customer_code": "BMV-CR-ET-04-0119",
      "tracking": "CRET040119",
      "smsalert": true,
      "date_created": "11, September 2023",
      "account_number": "",
      "bankname": "",
      "acctname": "",
      "accountstatus": "Active"
    }
  ]
}

Last updated

Was this helpful?