v2

latestOpenAPI 3.1.0CC-BY-SA 2.02026-07-2617789528.6 KB
User management

Update user information

Modify name and email of user, and add or remove custom additional string fields

post/usermanagement/update/info/{username}

Path parameters

usernamestring required
Example:JaneDoe

Username of an user (unique and must not contain whitespace)

Request body

namestring
emailstring
otherInfoobject

Example request

{
  "name": "John Doe",
  "email": "john.doe@example.com",
  "otherInfo": {
    "phone": "+1234"
  }
}

Response

Updated

result'success' | 'error' required

Result of the request

action'updateUser' required

The id of the action

Example response

{
  "data": {
    "updatedUser": {
      "name": "John Doe",
      "email": "john.doe@example.com",
      "otherInfo": {
        "phone": "+1234"
      }
    }
  }
}