List Taxability Category Descendants
Learn about listing taxability category descendants.
List taxability category descendants
Endpoint | Method | Key value | Required fields |
---|---|---|---|
/config/v2/taxability-categories/{id}/hierarchy | GET | $id | id |
This request returns a list of the requested taxability category, and all its descendants, using pre-order tree traversal.
Sample response - Taxability category descendants
{
"categories": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"userDefined": false,
"code": "string",
"name": "string",
"description": "string",
"parentCategoryId": "123e4567-e89b-12d3-a456-426614174000",
"startDate": "2021-01-01",
"endDate": "2021-12-01"
}
],
"count": 0,
"truncated": true
}
Updated 2 months ago