Skip to main content

List Groups

GET/Groups

Lists all groups in the organization.

Error Responses
400
Invalid filter syntax.
401
Missing or invalid Authorization header.
403
SCIM provisioning not enabled or insufficient permissions.
Request
curl -X GET "https://{your-domain}/api/scim/v2/Groups" -H "Authorization: Basic <access_token>"
Response — 200
{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:ListResponse"],
"totalResults": 1,
"startIndex": 1,
"itemsPerPage": 20,
"Resources": [
  {
    "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"],
    "id": "e9e30dba-f08f-4109-8486-d5c6a331660a",
    "displayName": "Engineering",
    "members": [
      {
        "value": "2819c223-7f76-453a-919d-413861904646",
        "display": "Barbara Jensen"
      }
    ]
  }
]
}