Employee Management

Create a new employee

post/employees

Request body

emailstring required

Employee email address

firstNamestring required

First name

lastNamestring required

Last name

passwordstring required

Password (min 6 chars)

role'employee' | 'admin' required

User role (employee or admin)

zendeskAgentEmailstring nullable

Zendesk agent email used to assign tickets (optional)

Example request

{
  "email": "john.doe@example.com",
  "firstName": "John",
  "lastName": "Doe",
  "password": "password123",
  "role": "employee",
  "zendeskAgentEmail": "john.doe@company.zendesk.com"
}

Response

Employee created successfully.

Changes

No recorded changes to this endpoint across all 1 revision of this API.