**Source URL:** https://limited.veevavault.dev/quality/vault-api/api-reference/25.3/scim/discovery-endpoints/retrieve-scim-provider

# Retrieve SCIM Provider

Retrieve a JSON that describes the SCIM specification features available on the currently authenticated Vault.

<Endpoint path="/api/{version}/scim/v2/ServiceProviderConfig" method="GET" />

## Headers

<FieldTable>
| Name | Description |
| --- | --- |
| `Accept` | `application/json` (default) or `application/scim+json` |
</FieldTable>

## Request

<CodeExample title="">
```bash
curl -X GET -H "Authorization: {SESSION_ID}" \
https://veepharm.com/api/v18.2/scim/v2/ServiceProviderConfig
```
</CodeExample>

## Response

<CodeExample title="">
```json
{
    "schemas": [
        "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
    ],
    "documentationUri": "https://developer.veevavault.com",
    "patch": {
        "supported": false
    },
    "bulk": {
        "supported": false,
        "maxOperations": 0,
        "maxPayloadSize": 0
    },
    "filter": {
        "supported": false,
        "maxResults": 1000
    },
    "changePassword": {
        "supported": false
    },
    "sort": {
        "supported": true
    },
    "etag": {
        "supported": false
    },
    "authenticationSchemes": [
        {
            "name": "OAuth Bearer Token",
            "description": "Authentication scheme using the OAuth Bearer Token Standard",
            "type": "oauthbearertoken",
            "primary": true
        }
    ],
    "meta": {
        "resourceType": "ServiceProviderConfig",
        "location": "https://promomats-template.vaultdev.com/api/v18.2/scim/v2/ServiceProviderConfig"
    }
}
```
</CodeExample>

## Response Details

The attributes returned in the JSON object are defined in Section 5 of [RFC7643](https://tools.ietf.org/html/rfc7643).

---

**Previous:** [Discovery Endpoints](/quality/vault-api/api-reference/25.3/scim/discovery-endpoints)  
**Next:** [Retrieve All SCIM Schema Information](/quality/vault-api/api-reference/25.3/scim/discovery-endpoints/retrieve-all-scim-schema-information)