Endpoint: GET {{scim_base_url}}/Groups/{{group_id}}
Description: retrieves detailed information for a specific group identified by its unique group ID, including a complete member list and group properties.
Request Parameters
- Method:
GET.
- Path Parameter:
group_id
(required).- A unique identifier for the target group.
- Content-Type: application/json.
- Authorization: Bearer token required.
Response Structure
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"],
"id": "string",
"displayName": "string",
"description": "string",
"members": [
{
"type": "User",
"value": "string",
"primary": boolean
}
]
}
Response Elements
Element | Description |
---|---|
schemas | SCIM schema identifier for group resource. |
id | Unique group identifier. |
displayName | Human-readable group name. |
description | Optional group description. |
members | Array of user members with type and priority indicators. |
Status Codes
Status Code | Description |
---|---|
200 OK | Successful retrieval of group information. |
404 Not Found | Group with specified ID does not exist. |
401 Unauthorized | Invalid or missing authentication token. |
403 Forbidden | Insufficient permissions to access a specific group. |