/
Get Group By Id
Get Group By Id
Endpoint | Method |
---|---|
GROUP-ID is the identifier for the entity in Talentech | GET |
Note: This endpoint will NOT return any values in the “members” property.
This is deliberate as pr. recommendation from Microsoft.
To get information about members, see “Get group by displayname” endpoint
Sample-Request:
curl --location --request GET '[API-URL]/scim/groups/[GROUP-ID]' \
--header 'Authorization: Bearer [AUTH-TOKEN]'
Responses:
200-OK | |
---|---|
Statuscode | 200 |
Sample response: {
"meta": {
"resourceType": "Group"
},
"displayName": "Group1DisplayName4",
"members": [],
"externalId": "07a68030-746b-4a1d-b01e-f3e1f8602526",
"id": "68cba83b-56f8-442c-9044-72f2674a738c",
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group"
]
}
|
404-NotFound | |
---|---|
Statuscode | 404 |
{
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.4",
"title": "Not Found",
"status": 404,
"traceId": "00-2ebdafb4662f7f46ad705ac722666406-e77eac87f82ab245-00"
}
|
Related content
Get User By Id
Get User By Id
More like this
Get Group by displayname
Get Group by displayname
More like this
Add group
Add group
More like this
Update Group [Add Members]
Update Group [Add Members]
More like this
Update Group [Remove Members]
Update Group [Remove Members]
More like this
Update group (non-member attributes)
Update group (non-member attributes)
More like this