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

# Update Profile

`PATCH /api/v1/users/me`

Partially update the authenticated user's profile.

Only fields included in the request body are modified.

## Request body

- UserProfileUpdate — Partial update payload for user profile fields. All fields are optional; only supplied fields are applied. Validation constraints mirror the column limits on the ``User`` model.
  - `first_name` string, nullable
  - `last_name` string, nullable
  - `phone` string, nullable
  - `company` string, nullable

## Response `200`

Successful Response

- UserProfileResponse — Full user profile detail. This is richer than ``schemas.auth.UserResponse`` — it includes ``updated_at`` and is intended for dedicated profile endpoints rather than the lightweight auth context.
  - `id` string, uuid, required
  - `email` string, required
  - `first_name` string, required
  - `last_name` string, required
  - `phone` string, nullable
  - `company` string, nullable
  - `status` 'active' | 'inactive' | 'suspended', required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

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