Skip to content

Edit User



wss user_edit

The user_edit request can modify certain fields of the user object.

NameTypeDescription
current_passwordstringCurrent user pasword
new_passwordstringNew user password
first_namestringFirst name
last_namestringLast name
emailstringEmail address
phonestringPhone number
avatar_object.file_blur_hashstringBlur hash for avatar
avatar_object.file_namestringAvatar image name
avatar_object.file_idstringAvatar file id
NameTypeDescription
userobjectNewly updated user object
{
"request": {
"user_edit": {
"current_password": "OldPasswrod123",
"new_password": "NewPassword321",
"email": "emai@example.com",
"phone": "7812356713"
},
"id": "RequestId"
}
}
{
"response": {
"id": "RequestId",
"user": {
"id": "63480e68f4794709f802a2fa",
"login": "User123",
"phone": "7812356713",
"email": "emai@example.com",
"created_at": "2025-08-13T05:51:44.733Z",
"updated_at": "2025-08-13T05:51:44.733Z"
}
}
}