Collect & Onramp
- GETRetrieve merchant account balance
- GETRetrieve merchant record
- PATCHUpdate merchant record
- POSTMake a mock payment
- GETRetrieves conversion rates
- GETRetrieve merchant transaction summary
- POSTCreate a new voucher payment
- GETRetrieve voucher record
- GETGet multiple records
- PATCHRedeem existing unused voucher
- PATCHRedeem and withdraw
- GETRetrieves conversion rates
- GETRetrieves minimum and maximum voucher amounts
- POSTCreate a new bank account
- GETRetrieve static accounts for a user
Offramp
- POSTCreate api key
- POSTCreate payment
- GETGet a single payment
- GETGet a transaction
- GETGet current rates
- GETGet minimum amount allowed
- GETGet supported currencies
- GETGet supported cryptocurrencies and network
- GETResolve overpaid Transaction
- GETRetrieve subscribed webhook url
- GETRetrieve user's transaction records
- GETRetrieve user's transaction summary
- GETRetrieves a user's crypto wallet addresses
- PUTSubscribe to webhook
Payout
- GETGet current rates
- POSTWithdraw balance
- GETGet a transaction
- POSTResolve bank account
- GETGet minimum amount allowed
- GETRetrieve a list of supported banks
- GETRetrieve subscribed webhook url
- GETRetrieve user's account balance
- GETRetrieve user's transaction records
- GETRetrieve user's transaction summary
- PUTSubscribe to webhook
- POSTTransfer funds
- POSTWallet transfer
Collect & Onramp
Create a new bank account
Creates a new managed bank account using user identity and contact information.
POST
/
v1
/
create-account
curl --request POST \
--url https://staging-vouchers.ventogram.com/api/v1/create-account \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--header 'X-Api-User: <api-key>' \
--data '{
"bvn": "46444443431",
"currency": "NGN",
"email": "rahman+1@gmail.com",
"firstName": "rahmann",
"lastName": "plus",
"middleName": "one",
"phone": "+2348033333511",
"dob": "25-02-2000",
"country": "NG",
"stateOfOrigin": "Lagos",
"stateOfResidence": "Lagos",
"lgaOfOrigin": "Amuwo",
"lgaOfResidence": "Ifako",
"addressLine1": "27 Obafemi Awolowo Way",
"addressLine2": "",
"addressLine3": ""
}'
{
"success": true,
"message": "bank account successfully completed",
"data": [
{
"bankCode": "",
"bankName": "Test Bank",
"accountName": "TEST-MANAGED-ACCOUNT",
"accountNumber": "1238314012",
"currency": "NGN"
}
]
}
Body
application/json
Response
200
application/json
Bank account successfully created
The response is of type object
.
curl --request POST \
--url https://staging-vouchers.ventogram.com/api/v1/create-account \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--header 'X-Api-User: <api-key>' \
--data '{
"bvn": "46444443431",
"currency": "NGN",
"email": "rahman+1@gmail.com",
"firstName": "rahmann",
"lastName": "plus",
"middleName": "one",
"phone": "+2348033333511",
"dob": "25-02-2000",
"country": "NG",
"stateOfOrigin": "Lagos",
"stateOfResidence": "Lagos",
"lgaOfOrigin": "Amuwo",
"lgaOfResidence": "Ifako",
"addressLine1": "27 Obafemi Awolowo Way",
"addressLine2": "",
"addressLine3": ""
}'
{
"success": true,
"message": "bank account successfully completed",
"data": [
{
"bankCode": "",
"bankName": "Test Bank",
"accountName": "TEST-MANAGED-ACCOUNT",
"accountNumber": "1238314012",
"currency": "NGN"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.