---
title: "Update Business Hours"
method: PUT
path: "/settings/business-hours"
tags: ["Settings"]
---

# Update Business Hours

`PUT /settings/business-hours`

Update business hours settings for the customer.

Times are in HH:MM format. Open time must be before close time for each day.

## Request body

- UpdateBusinessHoursRequest — Update business hours request model
  - `monday_enabled` boolean, nullable
  - `monday_open` string, nullable
  - `monday_close` string, nullable
  - `tuesday_enabled` boolean, nullable
  - `tuesday_open` string, nullable
  - `tuesday_close` string, nullable
  - `wednesday_enabled` boolean, nullable
  - `wednesday_open` string, nullable
  - `wednesday_close` string, nullable
  - `thursday_enabled` boolean, nullable
  - `thursday_open` string, nullable
  - `thursday_close` string, nullable
  - `friday_enabled` boolean, nullable
  - `friday_open` string, nullable
  - `friday_close` string, nullable
  - `saturday_enabled` boolean, nullable
  - `saturday_open` string, nullable
  - `saturday_close` string, nullable
  - `sunday_enabled` boolean, nullable
  - `sunday_open` string, nullable
  - `sunday_close` string, nullable
  - `holidays` Holiday[], nullable
    - `name` string, required
    - `start_date` string, required
    - `end_date` string, required

## Response `200`

Successful Response

- BusinessHoursResponse — Business hours settings response model
  - `monday_enabled` boolean, required
  - `monday_open` string, required
  - `monday_close` string, required
  - `tuesday_enabled` boolean, required
  - `tuesday_open` string, required
  - `tuesday_close` string, required
  - `wednesday_enabled` boolean, required
  - `wednesday_open` string, required
  - `wednesday_close` string, required
  - `thursday_enabled` boolean, required
  - `thursday_open` string, required
  - `thursday_close` string, required
  - `friday_enabled` boolean, required
  - `friday_open` string, required
  - `friday_close` string, required
  - `saturday_enabled` boolean, required
  - `saturday_open` string, required
  - `saturday_close` string, required
  - `sunday_enabled` boolean, required
  - `sunday_open` string, required
  - `sunday_close` string, required
  - `holidays` Holiday[]
    - `name` string, required
    - `start_date` string, required
    - `end_date` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/4a81645b59f6/schema)
