Skip to main content
POST
/
customer
/
check
Check customer credentials and return an API token
curl --request POST \
  --url https://demo.onlinebillingform.com/api/v2/customer/check \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "jsmith@example.com",
  "password": "<string>"
}
'
{
  "success": true,
  "user": {
    "id": 1,
    "name": "BillingServ Demo",
    "username": "admin",
    "email": "hello@baseserv.com",
    "account_type": 1,
    "live_api_token": "live_************************************"
  }
}

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.

Body

username
string<email>
required
password
string<password>
required

Response

OK

success
boolean