---
title: "Set the delivery pools daily start and end times"
method: PUT
path: "/delivery/pools/{deliveryPoolId}/hours"
tags: ["Delivery Pools API", "publicly-accessible"]
---

# Set the delivery pools daily start and end times

`PUT /delivery/pools/{deliveryPoolId}/hours`

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.

## Request body

- DeliveryPoolHours
  - `monday` object, required
    - `closed` boolean — true if the pool is closed for the day
    - `poolTimes` object[], required — pool start and end times for the day
      - `startTime` string, required — pool start time for Monday (HH:mm)
      - `endTime` string, required — pool end time for Monday (HH:mm)
  - `tuesday` object, required
    - `closed` boolean — true if the pool is closed for the day
    - `poolTimes` object[], required — pool start and end times for the day
      - `startTime` string, required — pool start time for Tuesday (HH:mm)
      - `endTime` string, required — pool end time for Tuesday (HH:mm)
  - `wednesday` object, required
    - `closed` boolean — true if the pool is closed for the day
    - `poolTimes` object[], required — pool start and end times for the day
      - `startTime` string, required — pool start time for Wednesday (HH:mm)
      - `endTime` string, required — pool end time for Wednesday (HH:mm)
  - `thursday` object, required
    - `closed` boolean — true if the pool is closed for the day
    - `poolTimes` object[], required — pool start and end times for the day
      - `startTime` string, required — pool start time for Thursday (HH:mm)
      - `endTime` string, required — pool end time for Thursday (HH:mm)
  - `friday` object, required
    - `closed` boolean — true if the pool is closed for the day
    - `poolTimes` object[], required — pool start and end times for the day
      - `startTime` string, required — pool start time for Friday (HH:mm)
      - `endTime` string, required — pool end time for Friday (HH:mm)
  - `saturday` object, required
    - `closed` boolean — true if the pool is closed for the day
    - `poolTimes` object[], required — pool start and end times for the day
      - `startTime` string, required — pool start time for Saturday (HH:mm)
      - `endTime` string, required — pool end time for Saturday (HH:mm)
  - `sunday` object, required
    - `closed` boolean — true if the pool is closed for the day
    - `poolTimes` object[], required — pool start and end times for the day
      - `startTime` string, required — pool start time for Sunday (HH:mm)
      - `endTime` string, required — pool end time for Sunday (HH:mm)

## Response `200`

Pool hours have been updated

## Other responses

- `404` — The pool could not be found

---

[API](https://skmtc.net/just-eat/apis/just-eat-api.md) · [All operations](https://skmtc.net/just-eat/apis/just-eat-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/just-eat/just-eat-api/versions/4b25c7d97a53/schema)
