Service Provider Configuration REST API
The ServiceProviderConfig endpoint allows getting the service provider configuration metadata.
This a meta endpoint for the API and does not require authentication.
To use the version-specific parameters/attributes, you must add api-version=N to the query parameter.
Previous versions of the API are also supported with the corresponding functionality.
Method Details
HTTPS Method | Entity Action | Request URI | Description |
---|---|---|---|
Read |
/scim/{tenant}/v2/ServiceProviderConfig |
Get service provider configuration |
Required Permissions
Function | Required Permissions |
---|---|
GET |
Read reference data |
Get the Service Provider Configuration
[GET] //ServiceProviderConfig
Sample Response
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"],
"patch": {"supported": false},
"bulk": {
"supported": false,
"maxOperations": 0,
"maxPayloadSize": 0
},
"filter": {
"supported": true,
"maxResults": 100
},
"changePassword": {"supported": false},
"sort": {"supported": false},
"etag": {"supported": false},
"authenticationSchemes": [ {
"name": "oauthbearertoken",
"description": "OAuth Bearer Token",
"specUrl": http://tools.ietf.org/html/draft-ietf-oauth-v2-bearer-01,
"primary": true
}]
}