Use this call to retrieve the supported SCIM capabilities.

GET

/ServiceProviderConfig

curl -X GET https://api.anaplan.com/scim/1/0/v2/ServiceProviderConfig

The response is provided in application/json format.

    HTTP/1.1 200 OK
   Content-Type: application/scim+json
   Location: https://api.anaplan.com/scim/1/0/v2/ServiceProviderConfig
   {
       "schemas":["urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"],
       "documentationUrl": "https://scimapi.docs.apiary.io/",
       "patch": {
         "supported":false
       },
       "bulk": {
         "supported":false,
         "maxOperations":1000,
         "maxPayloadSize":1048576
       },
       "filter": {
         "supported":false,
         "maxResults": 200
       },
       "changePassword": {
         "supported":false
       },
       "sort": {
         "supported":false
       },
       "authenticationSchemes": [
         {
           "name": "HTTP Basic",
           "description":
             "Authentication scheme using the HTTP Basic Standard",
           "specUrl": "anaplan.docs.apiary.io",
           "documentationUrl": "https://help.anaplan.com/3a4a2905-3d55-4199-a980-d1a89ffdcb7e-Use-basic-authentication",
           "type": "httpbasic",
           "primary": false
          },
          {
           "name": "Anaplan Bearer Token",
           "description":
             "Authentication scheme used across Anaplan public APIs. The Basic Auth request produces a Bearer token accepted by Anaplan APIs",
           "specUrl": "https://anaplanauthentication.docs.apiary.io/#reference/authentication-token",
           "documentationUrl": "https://anaplanauthentication.docs.apiary.io/#reference/authentication-token",
           "type": "anaplanbearertoken",
           "primary": false
         },

       ],
       "meta": {
         "location": "https://api.anaplan.com/scim/1/0/v2/ServiceProviderConfig",
         "resourceType": "ServiceProviderConfig",
         "created": "2021-07-31T00:00:00Z",
         "lastModified": "2021-07-31T00:00:00Z"
       }
   }