The ‘ServiceProviderConfig’ endpoint provides the configuration supported by the SCIM provider.
ServiceProviderConfig example
Request to GET the SCIM features available
Request
GET "https://<CONDECO-SCIM-Domain>/scim/api/V1/serviceproviderconfig"
Response
HTTP/1.1 200 OK
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
],
"patch": {
"supported": true
},
"bulk": {
"maxOperations": 1000,
"maxPayloadSize": 1048576,
"supported": false
},
"filter": {
"maxResults": 200,
"supported": true
},
"changePassword": {
"supported": false
},
"sort": {
"supported": false
},
"eTag": {
"supported": false
},
"authenticationSchemes": [
{
"type": "oauthbearertoken",
"description": "Authentication scheme using the OAuth Bearer Token Standard",
"name": "OAuth Bearer Token"
}
],
"meta": {
"resourceType": "ServiceProviderConfig",
"location": "https://<CONDECO-SCIM-Domain>/scim/api/V1/serviceproviderconfig"
}
}
Post your comment on this topic.