Add a user

This adds users to a team. It can fail if the license is exceeded. A user gets the MEMBER role by default.

SecurityAuthorization
Request
query Parameters
attributes
string

Attributes to include

excludedAttributes
string

Attributes to exclude

Request Body schema:

A JSON object describing the user to be created.

object
Responses
200

OK

204

OK, but no content to return.

400

Bad Request. Please check the response contents for an explanation of the cause. Causes include exceeding the team license, duplicate or empty user names or names that exceed 100 characters.

401

Unauthorized. Please check whether your API key or application key has sufficient permissions. In case you are unsure, please refer the documentation on application keys and permissions.

403

Forbidden

500

An internal error happened. Please forward the associated error ID along with any helpful information to our support

post/scim/v2/Users
Request samples
{
  • "schemas": [
    ],
  • "userName": "user@celonis.com",
  • "displayName": "SCIM User #1",
  • "externalId": "DEADBEEF",
  • "role": "ANALYST",
  • "sendEmailOnInvitation": "true"
}