v1
latestOpenAPI 3.1.02026-07-2498134321.1 KBUpdate User Data
Documentation on updating a User via SCIM.
OAuth Scope required: scim.users.updateUsers
Path parameters
A user's unique id can be identified using the Retrieve all Users endpoint with a filter parameter
Query parameters
A comma-separated list of attributes to exclude from the resources in the response.
Headers
Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-id is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.
Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-email is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.
Request body
Response
200 OK
Example response
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"userName": "alex.doe@example.com",
"name": {
"givenName": "Alex",
"familyName": "Doe"
},
"title": "Vice President",
"id": "6660d37dec0eac3deffb680e",
"emails": [
{
"value": "alex.doe@example.com",
"type": "work",
"primary": true
}
],
"active": true,
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {
"department": "Legal"
},
"urn:ietf:params:scim:schemas:extension:ironclad:2.0:User": {
"departmentHead": "jane.doe@test.com",
"provider": "local"
},
"meta": {
"resourceType": "User",
"created": "2025-03-26T18:33:48.336Z",
"lastModified": "2025-03-26T18:33:48.336Z",
"location": "https://na1.ironcladapp.com/scim/v2/Users/67e4488c605caf0d8aa2e5c6"
}
}