action codat_list_tax_rates { label: "List all tax rates" description: "Gets the latest tax rates for a given company." provider: codat method: GET path: "/companies/{companyId}/data/taxRates" encoding: json input: { type: "object" properties: { orderBy: { type: "string" } page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } query: { type: "string" } } required: ["page"] additionalProperties: false } output: { type: "object" } }