GET
/scim/v2/ServiceProviderConfig

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Access Key > as bearer

In: header

curl -X GET "https://api.descope.com/scim/v2/ServiceProviderConfig" \
  -H "Authorization: Bearer <token>"

OK

{
  "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?