👋 Welcome to the new Omni docs! We're still migrating, but the old docs are available at docs-legacy.omni.co.
cURL
curl --request PUT \ --url https://{instance}.omniapp.co/api/scim/v2/users/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "userName": "jsmith@example.com", "displayName": "<string>", "urn:omni:params:1.0:UserAttribute": {} } '
{ "id": "<string>", "userName": "<string>", "displayName": "<string>", "meta": { "resourceType": "User", "created": "2023-11-07T05:31:56Z", "lastModified": "2023-11-07T05:31:56Z" }, "schemas": [ "<string>" ] }
Update an existing user (SCIM 2.0)
Use either an Organization API Key or Personal Access Token (PAT). Include in the Authorization header as: Bearer YOUR_TOKEN
Bearer YOUR_TOKEN
User ID
Must match existing; cannot be modified
User updated successfully
Show child attributes
"User"
Was this page helpful?