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": 20 Type: Number This is the unique numeric identifier for the AccountTaxExemptLevel |
accountId | "accountId": 13 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": 23 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. |
GET | api/v4/AccountTaxExemptLevel/ |
Retrieve all of the AccountTaxExemptLevel objects. | |
Retrieve all of the AccountTaxExemptLevel objects. GET api/v4/AccountTaxExemptLevel/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "accountId": 23, "accountName": "Sample Text Data", "taxExemptLevelId": 3, "taxExemptLevelName": "Sample Text Data" } ] } |
GET | api/v4/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/v4/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": 21, "accountName": "Sample Text Data", "taxExemptLevelId": 10, "taxExemptLevelName": "Sample Text Data" } ] } } |
GET | api/v4/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/v4/AccountTaxExemptLevel/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "accountId": 6, "accountName": "Sample Text Data", "taxExemptLevelId": 0, "taxExemptLevelName": "Sample Text Data" } } |
POST | api/v4/AccountTaxExemptLevel/Search |
Retreive a list of AccountTaxExemptLevel objects based on search criteria. Search end points allow for retrieving results based on search criteria. Search criteria is sent as the payload of the POST. | |
Retreive a list of AccountTaxExemptLevel objects based on search criteria. POST api/v4/AccountTaxExemptLevel/Search { "query": { "top": 20, "search": [ { "name": "MyFieldName", "operator": "startsWith", "value": "a" } ] } } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "itemCount": 1, "items": [ { "identity": 1, "accountId": 8, "accountName": "Sample Text Data", "taxExemptLevelId": 23, "taxExemptLevelName": "Sample Text Data" } ] } |