Get group by ID
Description
Gets a group's details using the group's id.
HTTP method
GET
Request
http://{Admin API IP}:{port#}/api/v1/Groups/{id}
                                            Example header format:
Authorization: Basic <authorization token returned from the login method>
                                                
Content-Type: application/json
                                                
| Parameter | Description/Comments | 
|---|---|
| 
                                                                 Id  | 
                                                            
                                                                 (string) Group's id. Can be retrieved via Get all groups.  | 
                                                        
Response
{
    "ParentIds": null,
    "Sid": "42038eb9-9a58-4298-8a38-0be6f4d3b87a",
    "Name": "my group",
    "Description": "my group's description",
    "ViewOnly": false,
    "groupType": "UserDefined",
    "groupRole": "Regular",
    "Id": 7}
                                            200 OK
