Sign in

Create user (SCIM)

documented

Create a user via SCIM 2.0.

POST /scim/v2/usersUsers (SCIM)no implementation yet0 runs
No 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" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OMNIGROUP_API_KEY}}" \
  -d '{"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"], "displayName": "{{$displayName}}", "userName": "{{$userName}}", "emails": [{"value": "{{$userEmail}}", "type": "work", "primary": true}], "urn:omni:params:1.0:UserAttribute": {"custom_blob": "{{$custom_value}}"}}'