action cloud_elements_get_order_by_id { label: "Retrieve an order associated with a given ID from the eCommerce system. Specifying an order with an ID that does not exist will result in an error response" provider: cloud_elements method: GET path: "/orders/{id}" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } id: { type: "string" } } required: ["Authorization", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }