Tax Rates
Retrieve and manage tax rate records.
| Field | Data Type | POST | PATCH |
|---|---|---|---|
| TaxRateID | String | X | X |
| Description | String | X | X |
| Rate | Decimal | X | X |
| IsActive | Boolean | X | X |
| CreatedBy | String | ||
| DateCreated | DateTime | ||
| EditedBy | String | ||
| DateEdited | DateTime |
Key: TaxRateID
Required property: TaxRateID
Endpoints
GET
URL: https://{site}.mvpplant.com/ODataApi/v1/TaxRates
Description: Retrieve tax rate records.
POST
URL: https://{site}.mvpplant.com/ODataApi/v1/TaxRates
Description: Create a tax rate record.
Body: Send the property values marked in the POST column.
PATCH
URL: https://{site}.mvpplant.com/ODataApi/v1/TaxRates('taxRateID')
Description: Update an existing tax rate record.
Body: Send only the property values you want to update from the PATCH column.
OData Query Examples
-
Select specific fields:
https://{site}.mvpplant.com/ODataApi/v1/TaxRates?$select=TaxRateID,Description,Rate -
Filter active tax rates:
https://{site}.mvpplant.com/ODataApi/v1/TaxRates?$filter=IsActive eq true -
Sort by tax rate ID:
https://{site}.mvpplant.com/ODataApi/v1/TaxRates?$orderby=TaxRateID -
Return the first 10 records:
https://{site}.mvpplant.com/ODataApi/v1/TaxRates?$top=10
Notes
CreatedBy,DateCreated,EditedBy, andDateEditedare system-generated fields.- Use
TaxRateIDas the key field for tax rate records.
