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.

Note: The API version supported by HID Authentication Service is 10.1.0.

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. For details of the version updates, see SCIM API Revision History.

Method Details

HTTPS Method Entity Action Request URI Description

GET

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

Copy

Sample Request URI

[GET] /scim/{tenant}/v2/ServiceProviderConfig
Copy

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
 }]
}