List Groups (SCIM)
List groups using SCIM 2.0 protocol. Currently returns empty list as groups are not yet implemented.
Quick Navigation
Endpoint
GET /scim/v2/Groups
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <scim_bearer_token> |
Accept | Yes | application/scim+json or application/json |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
filter | string | No | SCIM filter query |
startIndex | integer | No | Starting index for pagination (default: 1) |
count | integer | No | Number of results per page (default: 100, max: 100) |
Response
Success (200)
{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:ListResponse"],
"totalResults": 0,
"itemsPerPage": 100,
"startIndex": 1,
"Resources": []
}
Features
- SCIM 2.0 compliant
- Groups support not yet implemented
- Returns empty list for now
- Pagination parameters accepted but not used
Example
curl -X GET "https://api.rivergen.com/scim/v2/Groups" \
-H "Authorization: Bearer <scim_bearer_token>" \
-H "Accept: application/scim+json"
Internal Notes
- Groups functionality is planned but not yet implemented
- Endpoint exists for SCIM 2.0 compliance