---
title: "Update Org"
method: PATCH
path: "/v1/auth/org"
tags: ["auth"]
---

# Update Org

`PATCH /v1/auth/org`

Update the organization's name and/or preferred language.

Distinguishes "field not provided" from "field set to null" via
pydantic's `model_fields_set` — the latter is how the settings UI
clears `preferred_language` ("Not set" → JSON null). Treating None
as "not provided" would swallow the clear and 400.

## Request body

- OrgUpdate
  - `name` string, nullable
  - `preferred_language` string, nullable

## Response `200`

Successful Response

- OrgInfo
  - `org_id` string, uuid, required
  - `org_name` string, required
  - `email` string, required
  - `preferred_language` string, nullable

## Other responses

- `422` — Validation Error

---

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