Service Provider Configuration (SCIM)
Get SCIM service provider configuration and capabilities.
Quick Navigation
Endpoint
GET /scim/v2/ServiceProviderConfig
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <scim_bearer_token> |
Accept | Yes | application/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"
Related Endpoints
- Schemas - Available schemas
- Resource Types - Resource types