action codat_list_suppliers { label: "List suppliers" description: "Gets the latest suppliers for a company, with pagination" provider: codat method: GET path: "/companies/{companyId}/data/suppliers" 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" } }