GET api/GetMonthlyPayrollSchedule?SecurityCode={SecurityCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SecurityCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MemberDeduction| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeNo | string |
None. |
|
| EmployeeName | string |
None. |
|
| payrollCode | string |
None. |
|
| sysDeductAmt | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EmployeeNo": null,
"EmployeeName": null,
"payrollCode": null,
"sysDeductAmt": 0.0
},
{
"EmployeeNo": null,
"EmployeeName": null,
"payrollCode": null,
"sysDeductAmt": 0.0
}
]
application/xml, text/xml
Sample:
<ArrayOfGetMonthlyPayrollSchedule.MemberDeduction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CNLDACEMPCSWebAPI">
<GetMonthlyPayrollSchedule.MemberDeduction>
<EmployeeName i:nil="true" />
<EmployeeNo i:nil="true" />
<payrollCode i:nil="true" />
<sysDeductAmt>0</sysDeductAmt>
</GetMonthlyPayrollSchedule.MemberDeduction>
<GetMonthlyPayrollSchedule.MemberDeduction>
<EmployeeName i:nil="true" />
<EmployeeNo i:nil="true" />
<payrollCode i:nil="true" />
<sysDeductAmt>0</sysDeductAmt>
</GetMonthlyPayrollSchedule.MemberDeduction>
</ArrayOfGetMonthlyPayrollSchedule.MemberDeduction>