TAG LINE
TAG LINE
SMALL TITLE
This entity is used specifically to assign a tax level from a tax software integration such as Avalara to the account. This defines different levels in which taxes would need to be applied such as "state", "federal".
identity READ-ONLY | "identity": 27 Type: Number This is the unique numeric identifier for the AccountTaxExemptLevel |
accountId | "accountId": 18 Type: Number Unique identifier for the associated Account object. |
accountName | "accountName": "Sample Name" Type: String The name of the object associated with the accountId property. |
taxExemptLevelId | "taxExemptLevelId": 7 Type: Number Unique identifier for the associated TaxExemptLevel object. |
taxExemptLevelName | "taxExemptLevelName": "Sample Name" Type: String The name of the object associated with the taxExemptLevelId property. |
When updating an object you use the update request header with the list of properties to update. Then you need only supply the new values in the body of your request. Please note, this header can only be used with PUT or PATCH requests.
Field List:
GET | api/v3/AccountTaxExemptLevel/ |
Retrieve all of the AccountTaxExemptLevel objects. | |
Retrieve all of the AccountTaxExemptLevel objects. GET api/v3/AccountTaxExemptLevel/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "accountId": 25, "accountName": "Sample Text Data", "taxExemptLevelId": 8, "taxExemptLevelName": "Sample Text Data" } ] } |
GET | api/v3/AccountTaxExemptLevel/Paged |
Retrieve all of the AccountTaxExemptLevel objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the AccountTaxExemptLevel objects in a paged fashion. GET api/v3/AccountTaxExemptLevel/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "accountId": 7, "accountName": "Sample Text Data", "taxExemptLevelId": 15, "taxExemptLevelName": "Sample Text Data" } ] } } |
GET | api/v3/AccountTaxExemptLevel/{id} |
Retrieve an instance of the AccountTaxExemptLevel object by its ID. | |
{id} | Unique identifier for the AccountTaxExemptLevel object. |
Retrieve an instance of the AccountTaxExemptLevel object by its ID. GET api/v3/AccountTaxExemptLevel/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "accountId": 9, "accountName": "Sample Text Data", "taxExemptLevelId": 23, "taxExemptLevelName": "Sample Text Data" } } |