Skip to content

Retrieve detailed information about a specific group

Request

Requires groups::read permissions

Security
JWTAuthorizer
Path
uidstringrequired

UID of the group to retrieve

curl -i -X GET \
  'https://apidocs.trustgrid.io/_mock/group/{uid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

The group object

Bodyapplication/json
uidstring

Group unique identifier (UUID)

namestring

Group display name

descriptionstring
referenceIdstring

Internal reference identifier (e.g. "idp-name group-name")

orgIdstring

Organization ID

policyIdsobject

Named policies assigned to this group. May be an object map or an array of policy ID strings depending on context.

typestring

Object type discriminator

Example:"Group"
Response
{ "uid": "string", "name": "string", "description": "string", "referenceId": "string", "orgId": "string", "policyIds": { "property1": null, "property2": null }, "type": "Group" }