v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Finance > TaxRate

Reads all Tax rates

Reads all Tax rates

get/api/2026-07-01/resources/finance/tax_rates

Query parameters

ids[]string[]

List of TaxRate IDs to filter.

List of TaxRate IDs to filter.

[
  "123"
]
tax_type_ids[]string[]

List of TaxType IDs to filter TaxRate records.

List of TaxType IDs to filter TaxRate records.

[
  "1234"
]
updated_fromstring

Start date for filtering TaxRate records based on their last update.

Example:2025-01-01

Start date for filtering TaxRate records based on their last update.

Response

OK

Example response

{
  "data": [
    {
      "id": "123",
      "rate": 0.07,
      "description": "VAT for general goods",
      "tax_type_id": "1234",
      "external_id": "EXT-RATE-001",
      "updated_at": "2025-01-01T00:00:00.000Z"
    }
  ]
}