---
title: "Update authenticated user profile"
method: PUT
path: "/api/user/profile"
tags: ["User"]
---

# Update authenticated user profile

`PUT /api/user/profile`

Update the profile information for the currently authenticated user (limited fields)

## Request body

- object
  - `name` string — User's display name
  - `imageUrl` string — URL to user's profile image
  - `metadata` object — User's metadata

## Response `200`

Profile updated successfully

- object
  - `success` boolean
  - `user` object
    - `id` string, uuid
    - `walletAddress` string, nullable
    - `walletLastVerifiedAt` string, date-time
    - `embeddedWalletAddress` string, nullable
    - `privyId` string, nullable
    - `name` string
    - `email` string, nullable
    - `isSubscribed` boolean
    - `imageUrl` string, nullable
    - `metadata` object, nullable
    - `status` string
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
    - `lastLoginAt` string, date-time

## Other responses

- `400` — Invalid fields provided (users can only update name and imageUrl)
- `401` — User not authenticated
- `404` — User not found
- `500` — Internal server error

## Changes

- **2025-09-10** `b08b5074799b` — 2 warning, 7 info
  - removed the request property `email`
  - removed the optional property `user/isEmailVerified` from the response with the `200` status
  - the endpoint scheme security `PrivyCookie` was added to the API
  - the endpoint scheme security `SIWESession` was removed from the API
  - …5 more
- **2025-07-17** `a1e6642ac2c1` — 1 info
  - added the optional property `user/isEmailVerified` to the response with the `200` status
- **2025-06-30** `e0d0a475d4b6` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/recallnet/apis/trading-simulator-api/changes/api/user/profile/put.md)

---

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