action just_eat_put_menu_for_ingestion { label: "Create or update a menu" description: "This will begin an asynchronous process that will lead to that menu becoming live on the Just Eat platform" provider: just_eat method: PUT path: "/restaurants/{tenant}/{restaurantId}/menu" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } "Content-Type": { type: "string" } restaurantId: { type: "string" } tenant: { type: "string" } } required: ["Authorization", "restaurantId", "tenant"] additionalProperties: false } output: { type: "object" properties: { correlationId: { type: "string" description: "An ID for the asynchronous operation to ingest the menu" } } } }