action codat_list_purchase_orders { label: "List purchase orders" description: "Get purchase orders" provider: codat method: GET path: "/companies/{companyId}/data/purchaseOrders" 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" } }