Create Virtual Account
Create a virtual accounts your customers to make payments
/vitrual-accounts
POST
https://seerbitapi.com/api/v2/virtual-accounts
This endpoint allows you to create virtual account numbers
Request Body
curl --location 'https://seerbitapi.com/api/v2/virtual-accounts' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ENCRYPTED_KEY' \
--data-raw '{
"publicKey": "YOUR_PUBLIC_KEY",
"fullName": "Jane Smith",
"bankVerificationNumber":"",
"currency": "NGN",
"country": "NG",
"reference": "FIRST_VIRTUAl_17",
"email": "js@emaildomain.com"
}'
{
"status": "SUCCESS",
"data": {
"code": "S20",
"payments": {
"reference": "FIRST_VIRTUAl_7",
"walletName": "SEERBIT(Business Name)",
"bankName": " 9PAYMENT SERVICE BANK",
"accountNumber": "Account Number"
},
"message": "Account created "
}
}