I.2 Employees API - GruMP-y/FASTWS GitHub Wiki
Get Employee By EmployeeID
This service will retrieve the employee information of a specific employee.
Call Type :
GET
Sample Call :
http://[web address]/api/Employee/EmployeeID/{employeeID}
e.g. http://[web address]/api/EmployeeID/1111
Return :
{
"EmployeeID": 1111,
"FirstName": "Michelle",
"MiddleName": "Duncan",
"LastName": "Miller",
"ManagerID": null,
"Gender": "Female",
"PhoneNumber": "359-(476)173-6782",
"EmailAddress": "[email protected]",
"DepartmentID": 3,
"PositionID": 3,
"IsCompany": 0,
"CompanyName": "",
"Status": 1
}