Skip to main content
Eptura Knowledge Center

ServiceProviderConfig

The ServiceProviderConfig endpoint provides the configuration supported by the SCIM provider.

ServiceProviderConfig Example

Request to GET the SCIM features available.

Request
GET https://<Eptura-SCIM-Domain>/scim/v1/serviceproviderconfig
Response

HTTP/1.1 200 OK

{
    "schemas": [
        "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
    ],
    "patch": {
        "supported": true
    },
    "bulk": {
        "maxOperations": 1000,
        "maxPayloadSize": 1048576,
        "supported": false
    },
    "filter": {
        "maxResults": 200,
        "supported": true
    },
    "changePassword": {
        "supported": false
    },
    "sort": {
        "supported": false
    },
    "eTag": {
        "supported": false
    },
    "authenticationSchemes": [
        {
            "type": "oauthbearertoken",
            "description": "Authentication scheme using the OAuth Bearer Token Standard",
            "name": "OAuth Bearer Token"
        }
    ],
    "meta": {
        "resourceType": "ServiceProviderConfig",
        "location": "https://<Eptura-SCIM-Domain>/scim/v1/serviceproviderconfig"
    }
}