Skip to main content
GET
/
group
/
{id}
Get Group
curl --request GET \
  --url http://{host}:{port}/{contextPath}/group/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "sales",
  "name": "Sales",
  "type": "Organizational Unit"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The id of the group to be retrieved.

Response

Request successful.

id
string | null

The id of the group.

name
string | null

The name of the group.

type
string | null

The type of the group.