action cloud_elements_get_customers { label: "Find customers in the eCommerce system, using the provided CEQL search expression. If no search expression is provided, all records will be retrieved" provider: cloud_elements method: GET path: "/customers" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } fields: { type: "string" } nextPage: { type: "string" } pageSize: { type: "string" } where: { type: "string" } } required: ["Authorization"] additionalProperties: false } output: { type: "object" additionalProperties: true } }