---
title: "Update Me"
method: PUT
path: "/v1/auth/me"
tags: ["Profile"]
---

# Update Me

`PUT /v1/auth/me`

Updates the profile of the currently logged-in user.

## Request body

- UpdateMeRequest
  - `email` string, email, required

## Response `200`

User profile updated successfully

- object
  - `user` User, required
    - `id` string, uuid, required — Unique user identifier.
    - `email` string, email, required — Email address of the user.
    - `is_verified` boolean, required — Whether the user's email has been verified.
    - `is_admin` boolean, required — Whether the user is an admin.
    - `created_at` string, date-time, required — Timestamp when the user was created.

## Other responses

- `400` — Invalid email format or missing fields
- `401` — Unauthorized
- `409` — Email already taken

---

[API](https://skmtc.net/px0-ai/apis/px0-api.md) · [All operations](https://skmtc.net/px0-ai/apis/px0-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/px0-ai/px0-api/revisions/3ed72443989d/schema)
