action just_eat_put_delivery_pools_delivery_pool_id_hours { label: "Set the delivery pools daily start and end times" description: "Set the daily start and end times for a pool or set closed flag if the pool does not operate on that day. Start and end times for all days must be provided. Though the API accepts array of start and end times for each day, multiple start and end time for a day are not accepted. If the end time for a day is equal to or before start time, end time will be considered as time for the next day." provider: just_eat method: PUT path: "/delivery/pools/{deliveryPoolId}/hours" encoding: json input: { type: "object" required: ["friday", "monday", "saturday", "sunday", "thursday", "tuesday", "wednesday"] properties: { friday: { type: "object" required: ["poolTimes"] properties: { closed: { type: "boolean" description: "true if the pool is closed for the day" } poolTimes: { type: "array" description: "pool start and end times for the day" items: { type: "object" required: ["startTime", "endTime"] properties: { endTime: { type: "string" description: "pool end time for Friday (HH:mm)" } startTime: { type: "string" description: "pool start time for Friday (HH:mm)" } } } } } } monday: { type: "object" required: ["poolTimes"] properties: { closed: { type: "boolean" description: "true if the pool is closed for the day" } poolTimes: { type: "array" description: "pool start and end times for the day" items: { type: "object" required: ["startTime", "endTime"] properties: { endTime: { type: "string" description: "pool end time for Monday (HH:mm)" } startTime: { type: "string" description: "pool start time for Monday (HH:mm)" } } } } } } saturday: { type: "object" required: ["poolTimes"] properties: { closed: { type: "boolean" description: "true if the pool is closed for the day" } poolTimes: { type: "array" description: "pool start and end times for the day" items: { type: "object" required: ["startTime", "endTime"] properties: { endTime: { type: "string" description: "pool end time for Saturday (HH:mm)" } startTime: { type: "string" description: "pool start time for Saturday (HH:mm)" } } } } } } sunday: { type: "object" required: ["poolTimes"] properties: { closed: { type: "boolean" description: "true if the pool is closed for the day" } poolTimes: { type: "array" description: "pool start and end times for the day" items: { type: "object" required: ["startTime", "endTime"] properties: { endTime: { type: "string" description: "pool end time for Sunday (HH:mm)" } startTime: { type: "string" description: "pool start time for Sunday (HH:mm)" } } } } } } thursday: { type: "object" required: ["poolTimes"] properties: { closed: { type: "boolean" description: "true if the pool is closed for the day" } poolTimes: { type: "array" description: "pool start and end times for the day" items: { type: "object" required: ["startTime", "endTime"] properties: { endTime: { type: "string" description: "pool end time for Thursday (HH:mm)" } startTime: { type: "string" description: "pool start time for Thursday (HH:mm)" } } } } } } tuesday: { type: "object" required: ["poolTimes"] properties: { closed: { type: "boolean" description: "true if the pool is closed for the day" } poolTimes: { type: "array" description: "pool start and end times for the day" items: { type: "object" required: ["startTime", "endTime"] properties: { endTime: { type: "string" description: "pool end time for Tuesday (HH:mm)" } startTime: { type: "string" description: "pool start time for Tuesday (HH:mm)" } } } } } } wednesday: { type: "object" required: ["poolTimes"] properties: { closed: { type: "boolean" description: "true if the pool is closed for the day" } poolTimes: { type: "array" description: "pool start and end times for the day" items: { type: "object" required: ["startTime", "endTime"] properties: { endTime: { type: "string" description: "pool end time for Wednesday (HH:mm)" } startTime: { type: "string" description: "pool start time for Wednesday (HH:mm)" } } } } } } } } output: { type: "object" additionalProperties: true } }