Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SCIM allows for multivalue attributes - like email but it is not supported by CoreOne for now.

Create user

URL

/scim/users

HTTP Verb

POST

Body

Code Block
{
  "userName":"John Novak",
  "name":  {
    "givenName":"John",
    "familyName":"Novak"
    },
  "emails":[{
    "value":"john.novak@swiss.ch",
    "primary":true
  }]
}

Remarks

As you can see the primary subattribute was added. CoreOne does not support multivalue and will only work with primary values.

Update user

  • URL /scim/users/{id} PATCH

...