GetGroupInfo
This API gets information of a specific group.
URL
<http/https>://<host-name>:<Port>/protectappws/services/rest/groups/groupInfo
Input Parameters
Parameters | Description |
---|---|
adminUser | User with admin rights (optional). |
adminPassword | Password for the admin user (optional). |
groupName | Name of the group for which information is to be requested. |
certAlias | Client certificate alias for making SSL connections (optional). |
certPass | Password for the provided certificate alias (optional). |
Sample REST call for cxf
request
{
"GroupInfoRequest": {
"adminUser": "aduser",
"adminPassword": "test1234",
"groupName": "twgGroup",
"certAlias": "privatekey",
"certPassword": "test1234"
}
}
response
{
"GroupInfoResponse": {
"Group": "twgGroup",
"UserList": {
"User": "twguser"
}
}
}