Skip to main content

Update User Properties By Name

Select

SaaS
Customer Managed

This operation updates the properties associated with a user.

Path Parameters
  • UserName string required

    Name of the user

Request Body required
  • users object[]
  • agePasswordDays int32
  • associatedUserGroups object[]
  • userGroupName string
  • associatedUserGroupsOperationType int32
  • description string
  • email string
  • enableUser boolean
  • fullName string
  • password string
  • userEntity object
  • userName string
  • validationParameters object
  • password string
Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object[]
  • errorString string
  • errorCode integer
  • entity object
  • userId integer
  • userName string
POST /User/byName(userName=':UserName')    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
UserName — path required
Body required

{
"users": [
{
"agePasswordDays": 120,
"associatedUserGroups": [
{
"userGroupName": "View All"
}
],
"associatedUserGroupsOperationType": 2,
"description": "Modifying description",
"email": "jdoe@company.com",
"enableUser": true,
"fullName": "Jane Doe",
"password": "########",
"userEntity": {
"userName": "jdoe"
},
"validationParameters": {
"password": "########"
}
}
]
}
curl -L -X GET 'https://CommandCenterHostName/commandcenter/api' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>'