TAG LINE
TAG LINE
SMALL TITLE

Account Tax Exempt Level

(API Version v5)


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".


What can you do with AccountTaxExemptLevel?


Properties

Property Details
identity
READ-ONLY
"identity": 5
Type: Number
This is the unique numeric identifier for the AccountTaxExemptLevel
accountId
"accountId": 26
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": 10
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.


End Points

GETAccountTaxExemptLevel/
Retrieve all of the AccountTaxExemptLevel objects.
Retrieve all of the AccountTaxExemptLevel objects.
GET AccountTaxExemptLevel/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "accountId": 15,
            "accountName": "Sample Text Data",
            "taxExemptLevelId": 6,
            "taxExemptLevelName": "Sample Text Data"
        }
    ]
}
GETAccountTaxExemptLevel/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
View Sample Response
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": 20,
                "accountName": "Sample Text Data",
                "taxExemptLevelId": 23,
                "taxExemptLevelName": "Sample Text Data"
            }
        ]
    }
}
GETAccountTaxExemptLevel/{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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "accountId": 3,
        "accountName": "Sample Text Data",
        "taxExemptLevelId": 1,
        "taxExemptLevelName": "Sample Text Data"
    }
}