---
title: "Update User Profile"
method: PUT
path: "/v1/user/profile"
tags: ["Profile"]
---

# Update User Profile

`PUT /v1/user/profile`

Updates the authenticated user's display name and profile photo. Profile photos are uploaded to the configured S3 object store.

## Request body

- UpdateUserProfileRequest
  - `displayName` string, required
  - `avatarUrl` string, uri, nullable, required

## Response `200`

Profile updated

- GetUserProfileResponse
  - `profile` UserProfile, required
    - `userId` string, uuid, required
    - `email` string, email, required
    - `displayName` string, required
    - `avatarUrl` string, uri, nullable, required

## Other responses

- `400` — Bad request - Missing or invalid parameters
- `401` — Unauthorized - Invalid or missing API key
- `404` — Resource not found
- `500` — Internal server error

---

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