Skip to main content
POST
/
customer
/
create
Create customer
curl --request POST \
  --url https://demo.onlinebillingform.com/api/v2/customer/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "address_1": "<string>",
  "city": "<string>",
  "county_id": 123,
  "country_id": 123,
  "postal_code": "<string>",
  "phone": "<string>",
  "username": "jsmith@example.com",
  "password": "<string>",
  "address_2": "<string>",
  "fax": "<string>",
  "website": "<string>",
  "credit": 123,
  "business_name": "<string>",
  "comment": "<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

name
string
required
address_1
string
required
city
string
required
county_id
integer
required
country_id
integer
required
postal_code
string
required
phone
string
required
username
string<email>
required
password
string<password>
required
address_2
string
fax
string
website
string<uri>
credit
number
business_name
string
comment
string

Response

OK

success
boolean