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
Request Body
Customer tracking id from the create account endpoint response
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"
}'
const axios = require('axios');
let data = JSON.stringify({
"trackingid":"00104K0000000",
"bankname":"providus"
});
let config = {
method: 'post',
url: 'https://api.oneappgo.com/v1/business/addbank-subaccount',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer SECRET_KEY',
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.oneappgo.com/v1/business/addbank-subaccount',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"trackingid":"00104K0000000",
"bankname":"providus"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Authorization: Bearer SECRET_KEY'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Sample Response
{
"status":true,
"message":"Providus Account Successfully Generated",
"trackingid":"00104K0000000"
}