Generic SCIM Endpoint - Update User

The Update User endpoint updates the requested user in StrongDM.

Most attributes are patchable in this way. For example, a user may be suspended by providing the attribute active: false. The following attributes, however, are not patchable via this method: groups and manager.displayName.

If the user ID is not found, or if the user ID matches a non-user, a 404 is returned.

If the requested update does not cause the user's information to change, a 204 is returned.

Request

Endpoint

/provisioning/generic/v2/Users/<ID>

HTTP method

PATCH

Path variables

Variable
Description
Requirement
Notes
Example

<ID>

User ID

Required

Returns a 404 if the user ID is not found or if it matches a non-user

a-7be349506171902f

Request body attributes

Attribute
Description
Example

active

User's status (Boolean); set false to suspend a user; this is the only field that can be updated for a user via this endpoint; requests should be formatted as in the example

"active": false

Example request

PATCH app.strongdm.com/provisioning/generic/v2/Users/a-7be349506171902f

Response

Example response

Last updated

Was this helpful?