**Source URL:** https://limited.veevavault.dev/medical/vault-api/api-reference/19.1/scim/discovery-endpoints/retrieve-single-scim-resource-type.md

# Retrieve Single SCIM Resource Type



Retrieve a single SCIM resource type. Defines the endpoints, the core schema URI which defines this resource, and any supported schema extensions.

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

## Headers {#headers}

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

## URI Path Parameters {#uri-path-parameters}

## Request {#request}

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

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "schemas": [
        "urn:ietf:params:scim:schemas:core:2.0:ResourceType"
    ],
    "id": "SecurityProfile",
    "name": "SecurityProfile",
    "description": "Security Profile",
    "endpoint": "/SecurityProfiles",
    "schema": "urn:ietf:params:scim:schemas:extension:veevavault:2.0:SecurityProfile",
    "meta": {
        "resourceType": "Resource Type",
        "location": "https://promomats-template.vaultdev.com/api/v18.2/scim/v2/ResourceTypes/SecurityProfile"
    }
}

```
</CodeExample>

---

**Previous:** [Retrieve All SCIM Resource Types](/medical/vault-api/api-reference/19.1/scim/discovery-endpoints/retrieve-all-scim-resource-types)  
**Next:** [Users](/medical/vault-api/api-reference/19.1/scim/users)