action just_eat_post_orders_order_id_readyforcollection { label: "Mark order as ready for collection" description: "Call when a collection order is ready to be collected by the customer. An order can only be marked as ready for collection if it is a collection order in the accepted state." provider: just_eat method: POST path: "/orders/{orderId}/readyforcollection" encoding: json input: { type: "object" properties: { orderId: { type: "string" } } required: ["orderId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }