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
Example request
{
"name": "John Doe",
"email": "john.doe@example.com",
"otherInfo": {
"phone": "+1234"
}
}Response
Updated
Example response
{
"data": {
"updatedUser": {
"name": "John Doe",
"email": "john.doe@example.com",
"otherInfo": {
"phone": "+1234"
}
}
}
}