Description: This API will fetch the group details.
Note
For Azure users, the excludedAttributes parameter is supported in the following format: GET /api/v1/scim/v2/Groups?startIndex=1&count=0&excludedAttributes=members
Usage: GET/api/v1/scim/v2/Groups/<groupName>
Produces: application/scim+json; charset=UTF-8
Header parameter: Authorization: Bearer
Sample response:
200 - OK - group exists
{
"displayName": "examplegroup",
"id": "examplegroup",
"members": [
{
"value": "anonymous",
"display": "anonymous"
}
],
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group"
],
"meta": {
"resourceType": "Group"
}
}
Sample response when group is not found:
404 - Group not found
{
"status": 404,
"detail": "examplesgroup isn't found",
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
]
}