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": 26 Type: Number This is the unique numeric identifier for the AccountTaxExemptLevel |
accountId | "accountId": 27 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": 11 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. |
updated READ-ONLY | "updated": "2021-04-26T15:25:27.587Z" Type: Date The date time stamp when this record was updated. Date and time values are specified in the ISO 8601 format. |
GET | AccountTaxExemptLevel/ |
Retrieve all of the AccountTaxExemptLevel objects. | |
Retrieve all of the AccountTaxExemptLevel objects. GET AccountTaxExemptLevel/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "accountId": 25, "accountName": "Sample Text Data", "taxExemptLevelId": 5, "taxExemptLevelName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } ] } |
GET | 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 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": 22, "accountName": "Sample Text Data", "taxExemptLevelId": 15, "taxExemptLevelName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } ] } } |
GET | 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 AccountTaxExemptLevel/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "accountId": 5, "accountName": "Sample Text Data", "taxExemptLevelId": 22, "taxExemptLevelName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } } |