Create USD Account
This endpoint allows the request USD virtual account for a customer. This returns a tracking ID which will be used to check the status of your account request.
Headers
Name
Type
Description
Request Body
Name
Type
Description
curl --location ' {{base_url}}/business/create-globalaccount' \
--header 'Authorization: BEARER SECRET_KEY' \
--data '{
"customerid": "BLD12211916",
"monthly_volume": "0_4999",
"pepstatus": false,
"source_of_funds": "gifts",
"expected_montly_fund": "0_4999",
"account_purpose": "payments_to_friends_or_family_abroad",
"agreeto_term": true,
"account_type": "USD",
"occupation": "Software Engineer",
"proof_of_address": "https://res.cloudinary.com/site/image/upload/v1714257348/idcard2.png"
}'var request = require('request');
var options = {
'method': 'POST',
'url': '{{base_url}}/business/create-globalaccount',
'headers': {
'Authorization': 'BEARER SECRET_KEY'
},
body: '{
"customerid": "BLD12211916",
"monthly_volume": "0_4999",
"pepstatus": false,
"source_of_funds": "gifts",
"expected_montly_fund": "0_4999",
"account_purpose": "payments_to_friends_or_family_abroad",
"agreeto_term": true,
"account_type": "USD",
"occupation": "Software Engineer",
"proof_of_address": "https://res.cloudinary.com/site/image/upload/v1714257348/idcard2.png"
}'
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
Sample Response
Last updated