GET
/
accounting
/
tax_rates
curl --request GET \
  --url https://api.rootfi.dev/v3/accounting/tax_rates \
  --header 'api_key: <api-key>'
{
  "data": [
    {
      "rootfi_id": 25177,
      "rootfi_deleted_at": null,
      "rootfi_created_at": "2024-01-24T11:12:02.641Z",
      "rootfi_updated_at": "2024-01-24T11:12:02.000Z",
      "rootfi_company_id": 1109,
      "platform_id": "123456_1",
      "platform_unique_id": "123456",
      "total_tax_rate": null,
      "name": "Victoria Wilson",
      "code": "6609425",
      "updated_at": "2023-12-21T10:14:26.353Z",
      "components": [
        {
          "name": "Victoria Wilson",
          "rate": null,
          "tax_agency": null,
          "is_compound": false
        }
      ],
      "effective_tax_rate": null,
      "tax_type": "VAT"
    }
  ],
  "next": "eyJyb290ZmlfaWQiOjQ0MDA2MX0=",
  "prev": "eyJyb290ZmaaqaWQiOjQ0MDA2MX0="
}

The Tax Rates Data Model is designed to provide a unified representation of tax rates across various accounting platforms.

Authorizations

api_key
string
header
required

Query Parameters

limit
integer | null

The number of objects you want to retrieve

next
string | null

The next page of objects to retrieve

prev
string | null

The previous page of objects to retrieve

select
string | null

Comma separated fields to select. Supported values are raw_data, data_hash

rootfi_updated_at[gte]
string | null

Filter by rootfi_updated_at Greater than or Equal To.

rootfi_company_id[eq]
integer | null

Filter by rootfi_company_id. You can filter by any field using this syntax field_name[operator]

include_deleted_records
string | null

Include deleted records. By default, deleted records are not included. Supported values are true and false

return_count
string | null

Return the count of the objects. Supported values are true and false

sort[rootfi_created_at]
enum<string>

Sort by rootfi_created_at

Available options:
ASC,
DESC
sort[rootfi_updated_at]
enum<string>

Sort by rootfi_updated_at

Available options:
ASC,
DESC

Response

200
application/json
data
object[]
required

The list of tax rates

next
string | null

The next page of objects to retrieve

prev
string | null

The prev page of objects to retrieve