GetAllGroupInfo
This API gets information of all groups.
URL
<http/https>://<host-name>:<Port>/protectappws/services/rest/groups/info
Input Parameters
| Parameters | Description | 
|---|---|
| adminUser | User with admin rights (optional). | 
| adminPassword | Password for the admin user (optional). | 
| certAlias | Client certificate alias for making SSL connections (optional). | 
| certPass | Password for the provided certificate alias (optional). | 
Sample REST call for cxf
response
    {
        "AllGroupInfoRequest": {
            "adminUser": "testadmin",
            "adminPassword": "test1234",
            "certAlias": "privatekey",
            "certPassword": "test1234"
        }
    }
response
{
    "AllGroupInfoResponse": {
        "GroupInfoList": {
            "GroupInfo": [
                {
                    "Group": "SQLGroup",
                    "UserList": {
                        "User": [
                            "dbusr",
                            "nparasher"
                        ]
                    }
                },
                {
                    "Group": "testGroup",
                    "UserList": {
                        "User": [
                            "testuser",
                            "dbusr",
                            "testdb"
                        ]
                    }
                },
                {
                    "Group": "twgGroup",
                    "UserList": {
                        "User": "twguser"
                    }
                }
            ]
        }
    }
}