POST api/EmployeePayrollProfile/AddEmployeePayrollProfile
Request Information
URI Parameters
None.
Body Parameters
RequestEmployeePayrollProfileCreate| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeId | integer |
None. |
|
| EffectiveFrom | string |
None. |
|
| BasicSalary | decimal number |
None. |
|
| DailyRateBasis | string |
None. |
|
| HourlyRateBasis | string |
None. |
|
| OTEligible | boolean |
None. |
|
| ReimbursementEligible | boolean |
None. |
|
| AdvanceEligible | boolean |
None. |
|
| LoanEligible | boolean |
None. |
|
| PaymentMethod | string |
None. |
|
| CreatedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmployeeId": 1,
"EffectiveFrom": "sample string 2",
"BasicSalary": 3.0,
"DailyRateBasis": "sample string 4",
"HourlyRateBasis": "sample string 5",
"OTEligible": true,
"ReimbursementEligible": true,
"AdvanceEligible": true,
"LoanEligible": true,
"PaymentMethod": "sample string 10",
"CreatedBy": 11
}
application/xml, text/xml
Sample:
<RequestEmployeePayrollProfileCreate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RRCDR_Attendance_API.Helpers.Custom"> <AdvanceEligible>true</AdvanceEligible> <BasicSalary>3</BasicSalary> <CreatedBy>11</CreatedBy> <DailyRateBasis>sample string 4</DailyRateBasis> <EffectiveFrom>sample string 2</EffectiveFrom> <EmployeeId>1</EmployeeId> <HourlyRateBasis>sample string 5</HourlyRateBasis> <LoanEligible>true</LoanEligible> <OTEligible>true</OTEligible> <PaymentMethod>sample string 10</PaymentMethod> <ReimbursementEligible>true</ReimbursementEligible> </RequestEmployeePayrollProfileCreate>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />