Update certain attributes within a user

Partially updates a user by applying SCIM 2.0 PatchOp replace operations to specific attributes. Use this endpoint when you need to change individual user fields without replacing the entire resource. For example, to deactivate a user, send a PATCH request with op "replace", path "active", and value false. Only the replace operation is supported.

Terminology

  • SCIM: System for Cross-domain Identity Management, a standard protocol for managing user identities across systems - GUID: Globally Unique Identifier format (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx) used for user IDs - HTTP: Hypertext Transfer Protocol; HTTP 404 indicates the userId was not found - RFC 7644: IETF standard for SCIM 2.0 partial updates (PatchOp) semantics - PatchOp: SCIM patch operation message format defined in RFC 7644 for partial resource updates
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
uuid
required

The unique identifier (GUID - Globally Unique Identifier) of the user. Must be a valid UUID format (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). Obtain this value from GET /scim/v2/Users or user management operations.

Body Params

SCIM PatchOp request body containing replace operations targeting specific user attributes.

SCIM 2.0 PatchOp request body for partial resource updates. Only the replace operation is supported by Seismic SCIM endpoints.

schemas
array of strings
required
length ≥ 1

SCIM schema identifiers array indicating this request follows the PatchOp message format as defined in SCIM 2.0 specification (RFC 7644).

schemas*
Allowed:
Operations
array of objects
required
length ≥ 1

Array of patch operations to apply to the target resource. Each operation specifies an op type, optional path, and replacement value.

Operations*

A single SCIM patch operation entry specifying the operation type, target attribute path, and new value to apply. The path attribute is required by the UMS SCIM service for all patch operations.

string
enum
required

The patch operation type. Seismic SCIM endpoints only support the replace operation for partial attribute updates.

Allowed:
string
required
length ≥ 1

SCIM attribute path identifying the target attribute to modify. Required by the UMS SCIM service; patch operations with a null or missing path are rejected with a 400 error.

string
required

The replacement value for the targeted attribute or attribute subset. Type depends on the attribute being modified.

Responses

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/scim+json