action cloud_elements_get_customers_orders { label: "Find orders in the customer associated with a given ID. If the customer does not exist, an error response will be returned. If no orders are found in the given customer then an empty array will be returned" provider: cloud_elements method: GET path: "/customers/{id}/orders" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } fields: { type: "string" } id: { type: "string" } nextPage: { type: "string" } pageSize: { type: "string" } } required: ["Authorization", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }