Update user (SCIM)
documentedUpdate a user via SCIM 2.0.
PUT /scim/v2/users/{userId}Users (SCIM)no implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{INSTANCE}}.omniapp.co/api/scim/v2/users/{{$userId}}" \
-X PUT \
-H "Authorization: Bearer {{OMNIGROUP_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"userName": "{{$userName}}", "displayName": "{{$displayName}}", "urn:omni:params:1.0:UserAttribute": {"{{$attrKey}}": "{{$attrValue}}"}}'