Skip to main content

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

HeaderRequiredDescription
AuthorizationYesBearer <scim_bearer_token>
AcceptYesapplication/scim+json or application/json

Query Parameters

ParameterTypeRequiredDescription
filterstringNoSCIM filter query
startIndexintegerNoStarting index for pagination (default: 1)
countintegerNoNumber 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