---
title: Disabling the SCIM 2.0 servlet extension
description: If you don't need to expose data through the System for Cross-domain Identity Management (SCIM) 2 servlet, you can disable the SCIM 2.0 servlet extension.
component: pingdirectory
version: 11.1
page_id: pingdirectory:managing_scim:pd_proxy_disable_scim_2_servelet_ext
canonical_url: https://docs.pingidentity.com/pingdirectory/11.1/managing_scim/pd_proxy_disable_scim_2_servelet_ext.html
llms_txt: https://docs.pingidentity.com/pingdirectory/llms.txt
docs_for_agents: https://developer.pingidentity.com/build-with-ai/docs-for-agents.md
revdate: 2026-08-17T00:00:00Z
page_aliases: ["managing_scim_11_and_20_servlet_extensions:pd_proxy_disable_scim_2_servelet_ext.adoc"]
section_ids:
  steps: Steps
  example: Example
---

# Disabling the SCIM 2.0 servlet extension

If you don't need to expose data through the System for Cross-domain Identity Management (SCIM) *(tooltip: \<div class="paragraph">
\<p>An application-level, HTTP-based protocol for provisioning and managing user identity information. SCIM supplies a common schema for representing users and groups and provides a REST API.\</p>
\</div>)* 2 servlet, you can disable the SCIM 2.0 servlet extension.

## Steps

1. Remove the SCIM 2 HTTP servlet extension from the HTTPS connection handler as well as from any other HTTP connection handlers.

2. Restart the handler.

## Example

```
dsconfig set-connection-handler-prop \
	--handler-name "HTTPS Connection Handler" \
	--remove http-servlet-extension:SCIM2 \
	--set enabled:false

	dsconfig set-connection-handler-prop \
	--handler-name "HTTPS Connection Handler" \
	--set enabled:true
```
