GET
/scim/v2/ServiceProviderConfig

Load the supported SCIM provisioning service provider configuration, using a valid access key.

This API endpoint allows administrators to load the supported SCIM provisioning service provider configuration. The response includes detailed information on the applicable configurations and schemas within your IdP for SCIM provisioning.

It is important to note the bearer token for SCIM API endpoints. The format is ProjectId:AccessKey the access key must be associated with the applicable tenant and associated with the tenant admin role.

See also

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:AccessKey\>

Try it

/scim/v2/ServiceProviderConfig

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Access Key > as bearer

In: header

Status codeDescription
200OK
curl -X GET "https://api.descope.com/scim/v2/ServiceProviderConfig"

{
  "schemas": [
    "string"
  ],
  "documentationUri": "string",
  "patch": {
    "supported": true
  },
  "bulk": {
    "supported": true,
    "maxOperations": 0,
    "maxPayloadSize": 0
  },
  "filter": {
    "supported": true,
    "maxResults": 0
  },
  "changePassword": {
    "supported": true
  },
  "sort": {
    "supported": true
  },
  "etag": {
    "supported": true
  },
  "authenticationSchemes": [
    {
      "name": "string",
      "description": "string",
      "primary": true,
      "specUri": "string",
      "type": "string"
    }
  ]
}

Was this helpful?