Commerce

Tax Rates

The Tax Rate object

A Rutter Tax Rate represents a simple or compound tax contained with the business entity's accounting system.

Properties

idstring

The Rutter generated unique ID of the tax rate.

namestringnullable

The name of the tax rate.

codestringnullable

The tax code of the tax rate.

effective_tax_ratenumbernullable
total_tax_ratenumbernullable
componentsarraynullable
Show components attributes
platform_dataoptional

The raw platform data corresponding to the Rutter object.

Example TaxRate Object
{
  "id": "00000000-0000-0000-0000-000000000000",
  "name": "Labor on Job",
  "code": "LABOR",
  "effective_tax_rate": 2.75,
  "total_tax_rate": 9.5,
  "components": null
}

List Tax Rates

GET /accounting/tax_rates
Supported for: Dynamics 365XeroZoho Books

Request Parameters

    access_tokenstringquery

    The access token of the connection.

    cursorstringoptionalquery

    The cursor to use for pagination. This value is passed in from next_cursor field in a previous request.

    expandenumoptionalquery

    Used to request inclusion of optional objects.

    Can beplatform_data.
    force_fetchenumoptionalquery

    Force a response even if the underlying connection hasn't finished the initial sync.

    One oftrue or false.
    limitintegeroptionalquery

    The limit on the number of entities returned.

    updated_at_maxintegeroptionalquery

    The Unix Timestamp in milliseconds maximum updated_at datetime to fetch entities from.

    updated_at_minintegeroptionalquery

    The Unix Timestamp in milliseconds minimum updated_at datetime to fetch entities from.

Response Body

    tax_ratesarray
    Show tax_rates attributes
    next_cursorstringnullable
Example Response Body
{
  "tax_rates": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "name": "Labor on Job",
      "code": "LABOR",
      "effective_tax_rate": 2.75,
      "total_tax_rate": 9.5,
      "components": null
    }
  ],
  "next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU="
}

Fetch a Tax Rate

GET /accounting/tax_rates/:id
Supported for: Dynamics 365XeroZoho Books

Request Parameters

    idstringpath

    The Rutter generated unique ID of the object.

    access_tokenstringquery

    The access token of the connection.

    force_fetchenumoptionalquery

    Force a response even if the underlying connection hasn't finished the initial sync.

    One oftrue or false.

Response Body

    tax_rateTax Rate
    Show tax_rate attributes
Example Response Body
{
  "tax_rate": {
    "id": "00000000-0000-0000-0000-000000000000",
    "name": "Labor on Job",
    "code": "LABOR",
    "effective_tax_rate": 2.75,
    "total_tax_rate": 9.5,
    "components": null
  }
}