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