{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
Service Provider Configuration
An HTTP GET to this endpoint will return a JSON structure that describes the SCIM specification features available in i-net Clear Reports.
GET /api/scim/v2/ServiceProviderConfiguration
The attributes returned in the JSON object are defined in Section 5 of [RFC7643]. An example representation of SCIM service provider configuration may be found in Section 8.5 of [RFC7643].
Example Request
# Request GET /api/scim/v2/ServiceProviderConfiguration HTTP/1.1 Authorization: Bearer VGhpcyBpcyBqdXN0IGEgZGVtbyBhY2Nlc3MgdG9rZW4u # Response HTTP/1.1 200 OK Content-Type: application/scim+json { "patch": { "supported": false }, "filter": { "maxResults": 200, "supported": true }, "authenticationSchemes": [], "etag": { "supported": false }, "sort": { "supported": false }, "bulk": { "maxPayloadSize": 1048576, "maxOperations": 1000, "supported": false }, "changePassword": { "supported": false }, "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig" ] }
Application Example
# Browser access https://127.0.0.1:9000/api/scim/v2/ServiceProviderConfiguration # Shell access using curl curl -LsH "Authorization: Bearer <access_token>" "https://127.0.0.1:9000/api/scim/v2/ServiceProviderConfiguration" # Shell access using curl using username and password curl -Lsu username:password "https://127.0.0.1:9000/api/scim/v2/ServiceProviderConfiguration"