taxArea resource type

Represents a tax area 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 taxArea taxArea Gets a tax area object.
DELETE taxArea none Deletes a tax area object.
POST taxArea taxArea Creates a tax area object.
PATCH taxArea taxArea Updates a tax area object.

Properties

Property Type Description
id GUID The unique ID of the tax area. Non-editable.
code string The code of the tax area.
displayName string Specifies the tax area's name. This name will appear on all sales documents for the tax area.
taxType NAV.taxBufferType Specifies the type of tax. It can be "Sales Tax" or "VAT".
lastModifiedDateTime datetime The last datetime the tax area was modified. Read-Only.

JSON representation

Here is a JSON representation of the taxArea resource.

{
    "id": "GUID",
    "code": "string",
    "displayName": "string",
    "taxType": "NAV.taxBufferType",
    "lastModifiedDateTime": "datetime"
}

GET taxArea
DELETE taxArea
POST taxArea
PATCH taxArea