---
title: "Update profile"
method: PATCH
path: "/v3/me"
tags: ["Profile"]
---

# Update profile

`PATCH /v3/me`

Updates the currently authenticated user by setting the values of the parameters passed. Any parameters not provided will be left unchanged.

## Request body

- MeUpdateRequestModel
  - `firstName` string, nullable — First name of the user.
  - `lastName` string, nullable — Last name of the user.
  - `email` string, email, nullable — Email address of the user.
  - `googleSsoEnabled` boolean, nullable — Enable or disable Google SSO.
  - `twoFactorEnabled` boolean, nullable — Enable or disable two factor authentication.
  - `twoFactorCode` string, nullable — Two factor code generated by Authenticator app.

## Response `200`

OK

- BaseProfileDto
  - `id` string, required
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, required
  - `name` string, required
  - `firstName` string, required
  - `lastName` string, required
  - `email` string, required
  - `role` string, required
  - `twoFactorEnabled` boolean, required
  - `googleSsoEnabled` boolean, required
  - `lastLoginAt` string, date-time, nullable
  - `company` string, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Server Error

---

[API](https://skmtc.net/cryptlex/apis/cryptlex-web-api.md) · [All operations](https://skmtc.net/cryptlex/apis/cryptlex-web-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cryptlex/cryptlex-web-api/revisions/ec1259c12475/schema)
