Skip to main content
POST
/
api
/
v1
/
virtual-account
cURL
curl --request POST \
  --url https://api.novacpayment.com/api/v1/virtual-account \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reference": "<string>",
  "amount": 123,
  "accountType": "<string>",
  "accountName": "<string>",
  "bankCode": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "customerEmail": "<string>",
  "expiryInMinutes": 123
}
'

Authorizations

Authorization
string
header
required

Input your Bearer token in this format - Bearer {your token here} to access this API

Body

reference
string | null
amount
number<double>
accountType
string | null
accountName
string | null
bankCode
string | null
firstName
string | null
lastName
string | null
customerEmail
string | null
expiryInMinutes
integer<int32>

Response

200

OK