👋 Welcome to the new Omni docs! We're still migrating, but the old docs are available at docs-legacy.omni.co.
cURL
curl --request GET \ --url https://{instance}.omniapp.co/api/scim/v2/groups \ --header 'Authorization: Bearer <token>'
{ "Resources": [ { "id": "<string>", "displayName": "<string>", "members": [ { "value": "<string>", "display": "<string>" } ], "meta": { "resourceType": "Group", "created": "2023-11-07T05:31:56Z", "lastModified": "2023-11-07T05:31:56Z" } } ], "itemsPerPage": 123, "startIndex": 123, "totalResults": 123 }
List all user groups (SCIM 2.0)
Use either an Organization API Key or Personal Access Token (PAT). Include in the Authorization header as: Bearer YOUR_TOKEN
Bearer YOUR_TOKEN
Number of results per page
Starting index for pagination
List of user groups
Show child attributes
"Group"
Was this page helpful?