GET api/{programid}/Employee/Worker/{employeeWorkerNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| programid | string |
Required |
|
| employeeWorkerNo | string |
Required |
Body Parameters
None.
Response Information
Resource Description
EmployeeWorker| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeNo | string |
None. |
|
| EmployeeWorkerNo | string |
None. |
|
| WorkerFirstName | string |
None. |
|
| WorkerLastName | string |
None. |
|
| WorkerPhoneNo | string |
None. |
|
| WorkerStatus | string |
None. |
|
| WorkerRate | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"EmployeeNo": "sample string 1",
"EmployeeWorkerNo": "sample string 2",
"WorkerFirstName": "sample string 3",
"WorkerLastName": "sample string 4",
"WorkerPhoneNo": "sample string 5",
"WorkerStatus": "sample string 6",
"WorkerRate": "sample string 7"
}
application/xml, text/xml
Sample:
<EmployeeWorker xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PPL.Services.Models.NavisionData.CommonClasses.Employee"> <EmployeeNo>sample string 1</EmployeeNo> <EmployeeWorkerNo>sample string 2</EmployeeWorkerNo> <WorkerFirstName>sample string 3</WorkerFirstName> <WorkerLastName>sample string 4</WorkerLastName> <WorkerPhoneNo>sample string 5</WorkerPhoneNo> <WorkerRate>sample string 7</WorkerRate> <WorkerStatus>sample string 6</WorkerStatus> </EmployeeWorker>