Get Group
Retrieves a group by id.
Method
GET /group/{id}
Parameters
Path Parameters
| Name | Description | 
|---|---|
| id | The id of the group to be retrieved. | 
Result
A JSON object with the following properties:
| Name | Value | Description | 
|---|---|---|
| id | String | The id of the group. | 
| name | String | The name of the group. | 
| type | String | The type of the group. | 
Response Codes
| Code | Media type | Description | 
|---|---|---|
| 200 | application/json | Request successful. | 
| 404 | application/json | Group with given id does not exist. See the Introduction for the error response format. | 
Example
Request
GET /group/sales
Response
Status 200.
{"id":"sales",
 "name":"Sales",
 "type":"Organizational Unit"}