Skip to main content
POST
/
v1
/
virtual-accounts
Create Virtual Account
curl --request POST \
  --url https://api.useglyde.co/v1/virtual-accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "static",
  "customer": {
    "reference": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "bvn": "<string>"
  },
  "expected_amount": 123,
  "meta": {}
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
type
enum<string>
required
Available options:
static,
dynamic
customer
object
required
expected_amount
integer
meta
object

Response

Virtual account created