v1
latestOpenAPI 3.1.02026-07-242735131.1 MBSCIM
List groups via SCIM v2.0
Retrieves a list of groups (departments) for the authenticated company following SCIM 2.0 standard
get/v1/scim/v2/Groups
Query parameters
startIndexinteger
1-based index of the first result
countinteger
Maximum number of results per page
filterstring
Filter expression for attributes (supports eq, ne, co, sw, ew, pr, lt, le, gt, ge)
Response
Success
Example response
{
"Resources": [
{
"displayName": "Engineering",
"id": "engineering-dept",
"members": [
{
"display": "John Doe",
"value": "user-123-slug"
}
],
"meta": {
"created": "2024-01-01T00:00:00Z",
"lastModified": "2024-01-01T00:00:00Z",
"resourceType": "Group"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group"
]
}
],
"itemsPerPage": 10,
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"startIndex": 1,
"totalResults": 10
}