Get Users and User Groups
This operation returns a list of users and user groups.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Users and User Groups
Schema
userGroups object[]
fullName stringdescription stringemail stringassociatedUserOrUserGroup object
userGroupName stringuserGroupId integer_type_ integerusers object[]
fullName stringdescription stringemail stringassociatedUserOrUserGroup object
userId integer_type_ integeruserName string
{
"userGroups": [
{
"fullName": "string",
"description": "string",
"email": "string",
"associatedUserOrUserGroup": {
"userGroupName": "string",
"userGroupId": 0,
"_type_": 0
}
}
],
"users": [
{
"fullName": "string",
"description": "string",
"email": "string",
"associatedUserOrUserGroup": {
"userId": 0,
"_type_": 0,
"userName": "string"
}
}
]
}
{
"userGroups": [
{
"fullName": "",
"description": "Administrative Group",
"email": "",
"associatedUserOrUserGroup": {
"userGroupName": "master",
"userGroupId": 1,
"_type_": 15
}
},
{
"fullName": "",
"description": "Members of this group can see all Commcell Objects, regardless of (other) group associations",
"email": "",
"associatedUserOrUserGroup": {
"userGroupName": "View All",
"userGroupId": 3,
"_type_": 15
}
}
],
"users": [
{
"fullName": "Administrator",
"description": "Administrator",
"email": "snasim@commvault.com",
"associatedUserOrUserGroup": {
"userId": 1,
"_type_": 13,
"userName": "testadmin"
}
},
{
"fullName": "",
"description": "",
"email": "test@commvault.com",
"associatedUserOrUserGroup": {
"userId": 3,
"_type_": 13,
"userName": "ObjectStoreUser"
}
},
{
"fullName": "",
"description": "",
"email": "test@cv.com",
"associatedUserOrUserGroup": {
"userId": 4,
"_type_": 13,
"userName": "edgeuser"
}
}
]
}
Loading...