Skip to main content

Update user

PUT 

https://app.tolgee.io/v2/user

Updates current user's profile information.

Request

Body

    name stringrequired
    email stringrequired
    currentPassword string

    Possible values: <= 50 characters

    callbackUrl string

    Callback url for link sent in e-mail. This may be omitted, when server has set frontEndUrl in properties.

Responses

OK

Schema
    id int64required
    username stringrequired
    name string
    emailAwaitingVerification string
    mfaEnabled booleanrequired
    avatar object
    large stringrequired
    thumbnail stringrequired
    accountType stringrequired

    Possible values: [LOCAL, MANAGED, THIRD_PARTY]

    globalServerRole stringrequired

    Possible values: [USER, ADMIN]

    deletable booleanrequired
    needsSuperJwtToken booleanrequired

Authorization: http

name: JwtTokentype: httpscheme: bearerbearerFormat: JWT
curl -L -X PUT 'https://app.tolgee.io/v2/user' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "string",
"currentPassword": "string",
"callbackUrl": "string"
}'
Request Collapse all
Base URL
https://app.tolgee.io
Auth
Body
{
  "name": "string",
  "email": "string",
  "currentPassword": "string",
  "callbackUrl": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!