Represents a tax group in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
| Method | Return Type | Description |
|---|---|---|
| GET taxGroup | taxGroup | Gets a tax group object. |
| DELETE taxGroup | none | Deletes a tax group object. |
| POST taxGroup | taxGroup | Creates a tax group object. |
| PATCH taxGroup | taxGroup | Updates a tax group object. |
Properties
| Property | Type | Description |
|---|---|---|
| id | GUID | The unique ID of the tax group. Non-editable. |
| code | string | The code of the tax group. |
| displayName | string | Specifies the tax group's name. This name will appear on all sales documents for the tax group. |
| taxType | NAV.taxBufferType | Specifies the type of tax. It can be "Sales Tax" or "VAT". |
| lastModifiedDateTime | datetime | The last datetime the tax group was modified. Read-Only. |
JSON representation
Here's a JSON representation of the taxGroup resource.
{
"id": "GUID",
"code": "string",
"displayName": "string",
"taxType": "NAV.taxBufferType",
"lastModifiedDateTime": "datetime"
}