Tax Rates

Tax Rates

Retrieve and manage tax rate records.

FieldData TypePOSTPATCH
TaxRateIDStringXX
DescriptionStringXX
RateDecimalXX
IsActiveBooleanXX
CreatedByString
DateCreatedDateTime
EditedByString
DateEditedDateTime

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, and DateEdited are system-generated fields.
  • Use TaxRateID as the key field for tax rate records.