POST api/2.0/crm/invoice/tax
Creates an invoice tax with the parameters (name, description, rate) specified in the request.
Name |
Description |
Type |
Example |
name
sent in body
|
Tax name
|
string
|
some text
|
description
sent in body
|
Tax description
|
string
|
some text
|
rate
sent in body
|
Tax rate
|
System.Decimal
|
|
POST api/2.0/crm/invoice/tax
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"name": "some text",
"description": "some text",
"rate": 0.0
}