cURL
curl --request POST \ --url https://api.useglyde.co/v1/transfer/initiate \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "amount": 5000, "bank_code": "058", "account_number": "0264341458", "reference": "txn_abc123xyz" } '
{ "status": "success", "message": "Transaction initiated successfully", "data": { "reference": "<string>", "merchant_reference": "<string>", "type": "<string>", "amount": 123, "status": "<string>", "fee": 123, "created_at": "<string>" } }
Initiate a bank transfer to a recipient’s account.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
5000
"058"
"0264341458"
"txn_abc123xyz"
Success
"success"
"Transaction initiated successfully"
Show child attributes
Was this page helpful?