All API endpoints are available under:
http://expressjs.ferozfaiz.com
Returns the API documentation page.
Returns a list of up to 500 employees.
Returns the details of a specific employee with the given employee_id.
Creates a new employee with the provided first_name, last_name, and job_title.
{ "first_name": "John", "last_name": "Doe", "job_title": "Software
Developer" }
Updates an existing employee with the given employee_id using the provided first_name, last_name, and job_title.
{ "first_name": "John", "last_name": "Doe", "job_title": "Senior Software
Developer" }
Deletes the employee with the given employee_id.