v1
latestOpenAPI 3.0.02026-07-142351,1971.3 MBUsers
Update a user
Update a user information.
Note: It can only be used with application keys belonging to administrators.
put/api/v1/user/{user_handle}
Path parameters
user_handlestring required
Example:test@datadoghq.com
The ID of the user.
Request body
Example request
{
"access_role": "ro",
"email": "test@datadoghq.com",
"handle": "test@datadoghq.com",
"icon": "/path/to/matching/gravatar/icon",
"name": "test user",
"verified": true
}Response
User updated
Example response
{
"user": {
"access_role": "ro",
"email": "test@datadoghq.com",
"handle": "test@datadoghq.com",
"icon": "/path/to/matching/gravatar/icon",
"name": "test user",
"verified": true
}
}