Users
Update User
Update a user with the provided user object data.
put/connect/users/{id}
Path parameters
idstring required
The user ID
Request body
Example request
{
"createTime": "2024-11-14T15:03:22Z",
"email": "someone@somewhere.invalid",
"firstName": "John",
"id": "3610b2cf-a2e7-4037-9c51-227f0c2e79ff",
"lastName": "Smith",
"note": "Employment terminated on Nov 10, 2023",
"oidcStatus": "enabled",
"roles": [
"limited-analyst"
],
"searchUsername": "someoneelse@somewhere.invalid",
"status": "locked",
"totpStatus": "enabled",
"updateTime": "2024-11-14T15:33:02Z",
"webauthnStatus": "enabled"
}Response
Returns the same user object that was provided as input, with the requested id populated
Example response
{
"createTime": "2024-11-14T15:03:22Z",
"email": "someone@somewhere.invalid",
"firstName": "John",
"id": "3610b2cf-a2e7-4037-9c51-227f0c2e79ff",
"lastName": "Smith",
"note": "Employment terminated on Nov 10, 2023",
"oidcStatus": "enabled",
"roles": [
"limited-analyst"
],
"searchUsername": "someoneelse@somewhere.invalid",
"status": "locked",
"totpStatus": "enabled",
"updateTime": "2024-11-14T15:33:02Z",
"webauthnStatus": "enabled"
}