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

# Update My Profile

`PATCH /v1/me`

Update the current user's profile.

Currently supports updating:
- full_name: User's display name

Returns:
    Updated user profile

Example request body:
{
    "full_name": "John Doe"
}

Example response:
{
    "user_id": "...",
    "email": "john@example.com",
    "full_name": "John Doe",
    "created_at": "2025-01-01T00:00:00Z",
    "updated_at": "2025-01-06T12:00:00Z"
}

## Request body

- UpdateProfileRequest — Request body for updating user profile
  - `full_name` string, required — User's full name

## Response `200`

Successful Response

- object

## Other responses

- `422` — Validation Error

---

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