action cloud_elements_update_order_by_id { label: "Update an order associated with a given ID in the eCommerce system. The update API uses the PATCH HTTP verb, so only those fields provided in the order object will be updated, and those fields not provided will be left alone. Updating an order with a specified ID that does not exist will result in an error response" provider: cloud_elements method: PATCH path: "/orders/{id}" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } action: { type: "string" } id: { type: "string" } } required: ["Authorization", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }