cURL
curl --request POST \ --url https://api.useglyde.co/v1/collection/bank-transfer \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "currency": "NGN", "reference": "order_12345678", "amount": 10000, "customer_name": "John Doe", "customer_email": "[email protected]", "customer_phone": "08012345678", "meta": {} } '
{ "status": "success", "data": { "reference": "<string>", "account_number": "<string>", "account_name": "<string>", "bank_name": "<string>", "amount": 123, "fee": 123, "expires_at": "<string>" } }
Create a collection with a virtual bank account for payment.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"NGN"
"order_12345678"
10000
"John Doe"
"[email protected]"
"08012345678"
Success
"success"
Show child attributes
Was this page helpful?