PingDirectory server supports the following SCIM 2.0 endpoints:

Endpoint Description Supported HTTP methods
/ServiceProviderConfig

Provides metadata that indicates the PingDirectory server's authentication scheme (which is always OAuth 2.0) and its support for features that are optional in the SCIM standard.

This endpoint is a metadata endpoint and is not subject to ACI restrictions.

GET
/Schemas

Lists the SCIM schemas that are configured for use on PingDirectory server, and defines the various attributes available to resource types.

This endpoint is a metadata endpoint and is not subject to ACI restrictions.

GET
/Schemas/<schema>

Retrieves a specific SCIM schema, as specified by the schema ID.

This endpoint is a metadata endpoint and is not subject to ACI restrictions.

GET
/ResourceTypes

Lists all of the SCIM resource types that are configured for use on PingDirectory server. Clients can use this information to determine the endpoint, core schema, and extension schemas of any resource types that the server supports.

This endpoint is a metadata endpoint and is not subject to ACI restrictions.

GET
/Resourcetypes/<resourseType>

Retrieves a specific SCIM resource type, as specified by its ID.

This endpoint is a metadata endpoint and is not subject to ACI restrictions.

GET
<resourceType>

Creates a new resource (POST), or lists and filters resources (GET).

GET, POST
/<resourceType>/.search

Lists and filters resources. This is used if passing query parameters in the URL is undesirable.

POST
/<resourceType>/<resourceId>

Retrieves a single resource (GET), modifies a single resource (PUT, PATCH), or deletes a single resource (DELETE).

GET, PUT, PATCH, DELETE