Skip to main content
POST
/
order
/
add-order
Add order
curl --request POST \
  --url https://demo.onlinebillingform.com/api/v2/order/add-order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customer_id": 123,
  "package_id": 123,
  "cycle_id": 123,
  "price": 123,
  "options.id": [
    "<string>"
  ],
  "options.amount": [
    "<string>"
  ],
  "options.value": [
    "<string>"
  ],
  "options.cycle_type": [
    "<string>"
  ]
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://www.billingserv.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <live_api_key>.

Body

customer_id
integer
required
package_id
integer
required
cycle_id
integer
required
price
number
required
options.id
string[]
options.amount
string[]
options.value
string[]
options.cycle_type
string[]

Response

OK

success
boolean