TAG LINE
TAG LINE
SMALL TITLE

Tax / Exempt Type

(API Version v5)


System defined exemption types which are typically populated by a 3rd party tax integration such as AvaTax.


What can you do with TaxExemptType?


Properties

Property Details
identity
READ-ONLY
"identity": 7
Type: Number
This is the unique numeric identifier for the TaxExemptType
name
READ-ONLY
"name": "Harmonized Sales Tax"
Type: String
System defined name for the Exempt Type


End Points

GETTax/ExemptType/
Retrieve all of the TaxExemptType objects.
Retrieve all of the TaxExemptType objects.
GET Tax/ExemptType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Harmonized Sales Tax"
        }
    ]
}
GETTax/ExemptType/Paged
Retrieve all of the TaxExemptType 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 TaxExemptType objects in a paged fashion.
GET Tax/ExemptType/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,
                "name": "Harmonized Sales Tax"
            }
        ]
    }
}
GETTax/ExemptType/{id}
Retrieve an instance of the TaxExemptType object by its ID.
{id}Unique identifier for the TaxExemptType object.
Retrieve an instance of the TaxExemptType object by its ID.
GET Tax/ExemptType/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Harmonized Sales Tax"
    }
}