Attach Bank to a Sub-Account

This endpoint helps help to add bank account for a sub-account created

POST https://api.oneappgo.com/v1/business/addbank-subaccount

Headers

Name
Type
Description

authorization*

String

SECRET_KEY

Request Body

Name
Type
Description

trackingid

string

Customer tracking id from the create account endpoint response

bankname

string

Your preffered bank from the list of available partner banks. List of available banks are: providus, 9psb, polaris, fidelity

Take a look at how you might do this:

curl --location 'https://api.oneappgo.com/v1/business/addbank-subaccount' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRE_KEY' \
--data-raw '{
    "trackingid":"00104K0000000",
    "bankname":"providus"
}'

Sample Response

{
    "status":true,
    "message":"Providus Account Successfully Generated",
    "trackingid":"00104K0000000"
}

Last updated

Was this helpful?