---
title: "Update User Settings"
method: PUT
path: "/settings"
tags: ["settings"]
---

# Update User Settings

`PUT /settings`

Update current user's settings.

## Headers

- `authorization` string, nullable

## Request body

- UserSettingsUpdateDTO
  - `weekly_coaching_email` boolean, nullable — Receive weekly coaching emails
  - `release_note_email` boolean, nullable — Receive release notes emails
  - `founders_email` boolean, nullable — Receive emails from the founders
  - `notetaker_enabled` boolean, nullable — Enable notetaker for all meetings by default
  - `per_call_coaching_email` boolean, nullable — Receive coaching summary emails for individual calls
  - `daily_recap_email` boolean, nullable — Receive daily recap emails summarizing the day's calls

## Response `200`

Successful Response

- UserSettingsReadDTO
  - `weekly_coaching_email` boolean — Receive weekly coaching emails
  - `release_note_email` boolean — Receive release notes emails
  - `founders_email` boolean — Receive emails from the founders
  - `notetaker_enabled` boolean — Enable notetaker for all meetings by default
  - `per_call_coaching_email` boolean — Receive coaching summary emails for individual calls
  - `daily_recap_email` boolean — Receive daily recap emails summarizing the day's calls
  - `id` string, uuid, required
  - `user_id` string, uuid, required

## Other responses

- `422` — Validation Error

---

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