Get Group Details by ID
The Get Group Details by ID API accepts a group ID as an input parameter and returns all the group details. The ID is a group's unique ID.
URL
The HTTP URL for Get Group Details by ID API is:
http://<host>:<port>/api/v1/accessmgmt/groups/<id>
This service implements Gateway Filter for Authentication to authenticate access of the service by a user.
Method
GET
Output Parameters
The following fields are output parameters:
Output Parameter | Type | Description |
---|---|---|
id | long | The unique ID assigned to the group |
string | The email ID of the group | |
groupName | string | The displayed name of the group |
groupDescription | string | Description of the group |
activeFlag | boolean | Whether the group is active or inactive |
lastModifiedBy | string | User who last modified the group |
lastModifiedDate | string | When the group was last modified |
createdDate | string | When the group was created |
createdBy | string | User who created the group |
allowAllApps | boolean | Whether the group has access to all the apps |
selectedAppIds | An array of selected app IDs | |
selectedUserIDs | An array of selected user IDs | |
selectedPermissionIds | An array of selected permission IDs |
Sample Response
{ "id": 2, "groupName": "test", "email": "test@tmail.com", "groupDescription": "", "activeFlag": true, "lastModifiedBy": "admin", "lastModifiedDate": "07/15/2015 02:45:35 AM EDT", "createdDate": "07/15/2015 02:45:09 AM EDT", "createdBy": "admin", "allowAllApps": false, "selectedAppIds": [ "AppForAll" ], "selectedUserIds": [ 1, 3 ], "selectedPermissionIds": [ 13, 15, 12, 14 ] }
Response Status
Code | Description |
---|---|
Status 200 | Array of group details |
Status 400 | Invalid request format |
Status 401 | Unauthorized request |
Status 500 | Server failure to process request |