List Taxability Drivers
Learn about listing taxability drivers.
List all taxability drivers
Endpoint | Method | Key value | Required fields |
---|---|---|---|
/config/v2/taxability-drivers | GET | $filter | N/A |
This request returns a list of taxability drivers ordered by code. You can filter by code
, name
, and owningTaxpayerId
using eq
operator.
For example:
code eq 'clothing', name eq 'product class for clothing', owningTaxpayerId eq '37f038e2-22ec-4e5b-93f4-f065bea65542' and code eq 'clothing'.
Sample response - List taxability drivers
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"code": "string",
"name": "string",
"note": "string",
"owningTaxpayerId": "123e4567-e89b-12d3-a456-426614174000",
"startDate": "2021-01-01",
"driverType": "PRODUCT",
"endDate": "2021-12-01"
}
Updated 2 months ago