Users
Create a user
Creates a new user. Email must be unique within the tenant.
post/users
Request body
Example request
{
"email": "jane.doe@company.com",
"firstName": "Jane",
"lastName": "Doe",
"phoneNumber": "+33612345678",
"jobTitle": "Account Executive",
"jobDepartment": "Sales",
"role": "user",
"timezone": "Europe/Paris"
}Response
User created
Example response
{
"id": 1,
"email": "john@example.com",
"phoneNumber": "+33612345678",
"jobTitle": "Account Executive",
"jobDepartment": "Sales",
"role": "user",
"timezone": "Europe/Paris",
"createdOn": "2024-06-15T14:30:00.000Z",
"modifiedOn": "2024-06-15T15:00:00.000Z"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.