GET Portal/IntegATMHR/v1/GetEmployeeStatus?EmpParam={EmpParam}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| EmpParam | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of HR_StatusForEmployee| Name | Description | Type | Additional information |
|---|---|---|---|
| callDate | string |
None. |
|
| employeeID | integer |
None. |
|
| employeeStatusID | integer |
None. |
|
| employeeStatusName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"callDate": "sample string 1",
"employeeID": 2,
"employeeStatusID": 3,
"employeeStatusName": "sample string 4"
},
{
"callDate": "sample string 1",
"employeeID": 2,
"employeeStatusID": 3,
"employeeStatusName": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfHR_StatusForEmployee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HorizonSSI.HRIntegration.Models">
<HR_StatusForEmployee>
<callDate>sample string 1</callDate>
<employeeID>2</employeeID>
<employeeStatusID>3</employeeStatusID>
<employeeStatusName>sample string 4</employeeStatusName>
</HR_StatusForEmployee>
<HR_StatusForEmployee>
<callDate>sample string 1</callDate>
<employeeID>2</employeeID>
<employeeStatusID>3</employeeStatusID>
<employeeStatusName>sample string 4</employeeStatusName>
</HR_StatusForEmployee>
</ArrayOfHR_StatusForEmployee>