Skip to main content
POST
/
users
{
  "userName": "<string>",
  "email": "jsmith@example.com",
  "firstName": "<string>",
  "lastName": "<string>",
  "businessRole": "<string>",
  "tutorialStatus": {
    "projectTutorial": {
      "hasClickedCreateModel": false,
      "doNotShowModelIntro": false,
      "doNotShowSchemaExplorerTip": false,
      "doNotShowTutorialInHomePanel": false
    }
  }
}

Body

application/json

Represents a user account with profile information and tutorial status

userName
string

The unique username for the user account

password
string

User's password (only included in create/update requests, never in responses)

email
string<email>

User's email address, used for authentication and notifications

firstName
string

User's first name

lastName
string

User's last name

businessRole
string

User's business role or job title

tutorialStatus
object

Represents the tutorial completion status and user preferences for onboarding

Response

User created successfully

Represents a user account with profile information and tutorial status

userName
string

The unique username for the user account

email
string<email>

User's email address, used for authentication and notifications

firstName
string

User's first name

lastName
string

User's last name

businessRole
string

User's business role or job title

tutorialStatus
object

Represents the tutorial completion status and user preferences for onboarding

I