v1
latestOpenAPI 3.0.32026-08-061874701.5 MBusers
Update user
Updates attributes of the specified user.
Who can use this operation?
Permissions: System Admin. To modify a user who belongs to a user model organization, you must also be a member of that same organization.
Licensed sheet creator constraints
- On the user model, you can only update licensedSheetCreator for a System Admin user (admin: true).
- You can't revoke the licensed sheet creator status (that is, set licensedSheetCreator to false) for a user who is either a Group Admin (groupAdmin: true) or a Resource Viewer (resourceViewer: true).
put/users/{userId}
Request body
Example request
{
"admin": true,
"licensedSheetCreator": true,
"firstName": "Jane",
"lastName": "Doe",
"groupAdmin": true,
"resourceViewer": true
}Response
Result object containing the User object for the updated user.
Example response
{
"message": "SUCCESS",
"data": [
{
"email": "jane.doe@smartsheet.com",
"name": "Jane Doe",
"firstName": "Jane",
"lastName": "Doe",
"profileImage": {
"imageId": "u!1!nAtdn5RJB_o!k6_e_3h2R3w!wmYXPek-yVD",
"height": 1050,
"width": 1050
},
"id": 48569348493401200
}
]
}