---
title: "Update Current User Profile"
method: PATCH
path: "/api/v1/auth/me"
tags: ["auth"]
---

# Update Current User Profile

`PATCH /api/v1/auth/me`

Update the authenticated user's profile (e.g., display name).

## Request body

- UpdateProfileRequest — Request body for updating the current user's profile.
  - `display_name` string, nullable — New display name (null to clear).

## Response `200`

Successful Response

- UserProfile — Public profile of the authenticated user.
  - `id` string, required — Unique user identifier.
  - `email` string, required — User email address.
  - `display_name` string, nullable — User-chosen display name.
  - `created_at` string, required — ISO-8601 timestamp of account creation.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/omnara/apis/omnara-api.md) · [All operations](https://skmtc.dev/omnara/apis/omnara-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/omnara/omnara-api/revisions/624048e40cad/schema)
