Retrieve a Taxability Category by ID
Learn about retrieving a taxability category by ID.
Retrieve a taxability category by ID
Endpoint | Method | Key value | Required fields |
---|---|---|---|
/config/v2/taxability-categories/{id} | GET | $id | id |
This request retrieves a taxability category by id.
For example:
code eq 'Med Items by RX', name eq 'Medical Items Sold Under Prescription', code eq 'Med Items by RX' and name eq 'Medical Items Sold Under Prescription'.
Sample response - Taxability category by ID
{
"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"
}
Updated about 2 months ago