Create a user
Creates a new user.
POST/v3/users
JWT
user:write
Parameters
| Name | Type | In | Description |
|---|---|---|---|
| origin | string | header |
Request Body Schema
| Property | Type | Description | Constraints |
|---|---|---|---|
| firstName* | string | First name of the user. | min: 1, max: 256 |
| lastName | string | Last name of the user. | min: 0, max: 256 |
| email* | string | Email address of the user. | min: 1, max: 256, format: email |
| company | string | Company of the user. | min: 0, max: 256 |
| organizationId | string | Unique identifier for the organization. | min: 0, max: 256 |
| resellerId | string | Unique identifier for the reseller. | min: 0, max: 256 |
| allowCustomerPortalAccess | boolean | Allow customer portal access. | |
| metadata | array | List of metdata key/value pairs. | items: object |
| key* | string | Name of the key. | min: 1, max: 256 |
| value* | string | Value of the key. | min: 0, max: 4096 |
| viewPermissions | array | Array of view permissions associated with the metadata. | items: string |
| tags | array | List of tags. | items: string |
| role | string | Role of the user. | min: 1, max: 256 |
| password* | string | Password of the user. | min: 8, max: 256 |
Request Example
Responses
201
400
401
403
409
429
500