Skip to main content
POST
/
v1
/
collection
/
bank-transfer
Create Bank Transfer Collection
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>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
currency
string
required
Example:

"NGN"

reference
string
required
Example:

"order_12345678"

amount
integer
required
Example:

10000

customer_name
string
required
Example:

"John Doe"

customer_email
string
required
customer_phone
string
Example:

"08012345678"

meta
object

Response

200 - application/json

Success

status
string
Example:

"success"

data
object