The Tax Rate object
A Rutter Tax Rate represents a simple or compound tax contained with the business entity's accounting system.
Properties
id
stringThe Rutter generated unique ID of the tax rate.
name
stringnullableThe name of the tax rate.
code
stringnullableThe tax code of the tax rate.
effective_tax_rate
numbernullabletotal_tax_rate
numbernullablecomponents
arraynullablecomponents
attributesplatform_data
optionalThe raw platform data corresponding to the Rutter 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_ratesRequest Parameters
access_token
stringqueryThe access token of the connection.
cursor
stringoptionalqueryThe cursor to use for pagination. This value is passed in from next_cursor
field in a previous request.
expand
enumoptionalqueryUsed to request inclusion of optional objects.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
limit
integeroptionalqueryThe limit on the number of entities returned.
updated_at_max
integeroptionalqueryThe Unix Timestamp in milliseconds maximum updated_at datetime to fetch entities from.
updated_at_min
integeroptionalqueryThe Unix Timestamp in milliseconds minimum updated_at datetime to fetch entities from.
Response Body
tax_rates
arraytax_rates
attributesnext_cursor
stringnullable{
"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/:idRequest Parameters
id
stringpathThe Rutter generated unique ID of the object.
access_token
stringqueryThe access token of the connection.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
Response Body
tax_rate
Tax Ratetax_rate
attributes{
"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
}
}