cURL
curl --request POST \ --url https://api.useglyde.co/v1/collection/initialise \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "currency": "NGN", "reference": "order_12345678", "amount": 10000, "customer": { "name": "John Doe", "email": "[email protected]", "phone": "08012345678" }, "channels": [ "card_payment" ], "default_channel": "card_payment", "meta": {} } '
{ "status": "success", "message": "Collection Request created successfully", "data": { "url": "https://pay.useglyde.io/f369f561-aaa4-4701-aeb1-ce79f438efc1" } }
Create a payment page URL for customers to complete payment.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"NGN"
"order_12345678"
10000
Show child attributes
card_payment
bank_transfer
Success
"success"
"Collection Request created successfully"
Was this page helpful?