---
title: "Update Profile"
method: PUT
path: "/api/auth/me/profile"
tags: ["authentication"]
---

# Update Profile

`PUT /api/auth/me/profile`

Update the current user's profile (display name and/or profile picture).

## Request body

- UpdateProfileRequest
  - `name` string, nullable
  - `picture_url` string, nullable

## Response `200`

Successful Response

- AuthRoutesUserResponse
  - `id` string, required
  - `email` string, required
  - `name` string, required
  - `picture` string, nullable
  - `email_verified` boolean
  - `organization_id` string, nullable
  - `is_org_owner` boolean
  - `google_linked` boolean

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/qomplement/apis/fastapi.md) · [All operations](https://skmtc.net/qomplement/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qomplement/fastapi/revisions/718de1c0d866/schema)
