Skip to main content
POST
/
setting
/
update-tax-class
Update tax class
curl --request POST \
  --url https://demo.onlinebillingform.com/api/v2/setting/update-tax-class \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "class_id": 123,
  "name": "<string>",
  "rate": [
    "<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

class_id
integer
required
name
string
required
rate
string[]
required

Object/array keyed by tax zone id

default
enum<integer>
required
Available options:
0,
1

Response

OK

success
boolean