Skip to main content
POST
/
orders
cURL
curl --request POST \
  --url https://api.example.com/orders \
  --header 'Content-Type: application/json' \
  --data '
{
  "reference": "9689c0df-a313-4a5b-b71",
  "currency_code": "NGN",
  "amount": 5000,
  "description": "food payment",
  "customer": {
    "first_name": "John",
    "last_name": "Doe",
    "email": "johndoe@gmail.com",
    "phone_number": "08012345678"
  }
}
'
{
  "success": true,
  "message": "Operation Successful",
  "data": {
    "recipient_name": "bsuitetest llc",
    "reference": "9689c0df-a313-4a5b-b71a-056c89b90977",
    "amount": "5000",
    "currencyCode": "NGN",
    "url": "https://payments.dev.boundlesspay.com?ref=9689c0df-a313-4a5b-b71a-056c89b90977",
    "channels": "card"
  }
}

Body

application/json
reference
string
Example:

"9689c0df-a313-4a5b-b71"

currency_code
string
Example:

"NGN"

amount
number
Example:

5000

description
string
Example:

"food payment"

customer
object

Response

Order created successfully

success
boolean
Example:

true

message
string
Example:

"Operation Successful"

data
object