Get group details

GET /Groups/{groupId}

Returns details and members of a specific group

Path parameters

  • groupId string Required

    Identifier of the group to retrieve

Responses

  • 200 application/scim+json

    Group details including members

    Hide response attributes Show response attributes object
  • Group not found

GET /Groups/{groupId}
curl \
 -X GET https://setup.adra.com/api/organizations/{organizationSid}/scim/Groups/{groupId}
Response examples (200)
{
  "id": "890801eb-77cf-4160-ac31-c120eb42b929-0-1",
  "meta": {
    "resourceType": "Group"
  },
  "members": [
    {
      "type": "User",
      "value": "bc605901-b4ec-4685-a6a2-e7bf0f025a23"
    }
  ],
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:Group"
  ],
  "externalId": "890801eb-77cf-4160-ac31-c120eb42b929-0-1",
  "displayName": "Ortiz and Sons|Engagement|Admin"
}