action codat_list_tracking_categories { label: "List tracking categories" description: "Gets the latest tracking categories for a given company." provider: codat method: GET path: "/companies/{companyId}/data/trackingCategories" 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" } }