---
title: "Update current user"
method: PUT
path: "/api/v1/users/current"
tags: ["Users"]
---

# Update current user

`PUT /api/v1/users/current`

Updates information for the currently authenticated user. May require reauthentication if critical fields are changed.

## Request body

- UpdateCurrentUserForm
  - `userId` string
  - `givenName` string
  - `email` string
  - `surname` string
  - `currentPassword` string
  - `newPassword` string

## Response `200`

User information updated successfully

- ResponseEntityUserUpdateView
  - `errors` ErrorEntity[]
    - `errorCode` string
    - `message` string
    - `fieldName` string
  - `entity` object
  - `messages` MessageEntity[]
    - `message` string
  - `i18nMessagesMap` object
  - `permissions` string[]
  - `pagination` Pagination
    - `currentPage` integer
    - `perPage` integer
    - `totalEntries` integer

## Other responses

- `400` — Bad request - invalid user data or password requirements
- `401` — Unauthorized - authentication required
- `500` — Internal server error

---

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