PingDirectory Server supports the following System for Cross-domain Identity Management (SCIM) 2.0 endpoints.

Endpoint Description Supported HTTP methods

/ServiceProviderConfig

Provides metadata that indicates the PingDirectory Server's authentication scheme (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/<resourceType>

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 as an alternative to passing query parameters in the URL.

POST

/<resourceType>/<resourceId>

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

  • GET
  • PUT
  • PATCH
  • DELETE