Skip to main content

Service Provider Configuration (SCIM)

Get SCIM service provider configuration and capabilities.

Quick Navigation

Endpoint

GET /scim/v2/ServiceProviderConfig

Headers

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

Response

Success (200)

{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"],
"patch": {
"supported": true
},
"bulk": {
"supported": false,
"maxOperations": 0,
"maxPayloadSize": 0
},
"filter": {
"supported": true,
"maxResults": 100
},
"changePassword": {
"supported": false
},
"sort": {
"supported": false
},
"etag": {
"supported": false
},
"authenticationSchemes": [
{
"name": "OAuth Bearer Token",
"description": "Authentication using OAuth Bearer Token",
"specUri": "http://www.rfc-editor.org/info/rfc6750",
"documentationUri": "https://tools.ietf.org/html/rfc6750",
"type": "oauthbearertoken",
"primary": true
}
]
}

Features

  • SCIM 2.0 compliant
  • Returns server capabilities and features
  • Indicates supported operations (PATCH, FILTER)
  • Lists authentication schemes

Example

curl -X GET "https://api.rivergen.com/scim/v2/ServiceProviderConfig" \
-H "Authorization: Bearer <scim_bearer_token>" \
-H "Accept: application/scim+json"