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": {}
}
'