cURL
curl --request GET \ --url http://{host}:{port}/{contextPath}/group/{id} \ --header 'Authorization: Basic <encoded-value>'
{ "id": "sales", "name": "Sales", "type": "Organizational Unit" }
Retrieves a group by id.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The id of the group to be retrieved.
Request successful.
The id of the group.
The name of the group.
The type of the group.