SCIM 2.0
📄️ List users
Returns a paginated list of SCIM user representations belonging to the specified client. Supports filtering, sorting, attribute selection, and bulk export format.
📄️ Create user
Creates a new user based on the SCIM representation provided in the request body. The user is created within the client specified by `clientExtId` in the URL path.
📄️ Search users
Searches users using a POST request with a SCIM search request body. Functionally equivalent to the GET list endpoint but allows complex filter expressions and parameters to be passed in the request body instead of query parameters.
📄️ Bulk operations
Executes multiple SCIM operations (GET, POST, DELETE) in a single HTTP request. Each operation targets the /Users path and is processed sequentially.
📄️ Get user
Retrieves the full SCIM representation of a single user by internal ID. The user must belong to the client specified in the URL path.
📄️ Delete user
Deletes a user and all related resources (credentials, profiles, authorizations). The user must belong to the client specified by `clientExtId` in the URL path.
📄️ Patch user
Applies partial updates to a user using SCIM PATCH operations (add, replace, remove). Supports patching credentials, profiles, authorizations, addresses, emails, phone numbers, login info, and custom properties.
📄️ Get service provider configuration
Returns the SCIM service provider configuration, describing the server's
📄️ List schemas
Returns a paginated list of all SCIM schemas supported by the server. Each schema describes the attributes available for a particular resource type.
📄️ Get schema
Retrieves a single SCIM schema definition by its schema URI. The schema describes all attributes, their types, mutability, and other metadata for a particular SCIM resource type.
📄️ List resource types
Returns a paginated list of all SCIM resource types supported by the server. Each resource type describes a type of SCIM resource (e.g., User) with its associated schemas and endpoint path.
📄️ Get resource type
Retrieves a single SCIM resource type definition by its ID.