Gets all the available employee (2 sample employee).
Obtains an employee given its id.
Creates an employee.
Headers
Content-Type : application/json
Request body (raw)
{
"id": "3",
"name": "Lav Sharma",
"role": "Associate Software Engineer",
"age": "22",
"gender": "Male"
}
Updates an existing employee.
Headers
Content-Type : application/json
Request body (raw)
{
"id": "1",
"name": "Mahesh Joshi",
"role": "Software Engineer",
"age": "23",
"gender": "Male"
}
Removes an employee given its id.