Skip to main content
GET
/
scim
/
v2
/
groups
/
{id}
Get user group
curl --request GET \
  --url https://{instance}.omniapp.co/api/scim/v2/groups/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "displayName": "<string>",
  "members": [
    {
      "value": "<string>",
      "display": "<string>"
    }
  ],
  "meta": {
    "resourceType": "Group",
    "created": "2023-11-07T05:31:56Z",
    "lastModified": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Use either an Organization API Key or Personal Access Token (PAT). Include in the Authorization header as: Bearer YOUR_TOKEN

Path Parameters

id
string
required

Group ID

Response

User group details

id
string
displayName
string
members
object[]
meta
object