POST api/GetPayDetailsRewardStatement
Get an employee's pay details reward statement
Request Information
Payload
| Name | Payload Parameters | Additional information |
|---|---|---|
| Parameters | int Personnel_Number |
None. |
Response Information
Response body formats
application/json, text/json
[
{
"ID": 1,
"Description": "sample string 2",
"EmployerContribution": 3.0,
"EmployeeContribution": 4.0,
"Frequency": "sample string 5",
"AdjustedEmployerContribution": 3.0,
"AdjustedEmployeeContribution": 4.0
},
{
"ID": 1,
"Description": "sample string 2",
"EmployerContribution": 3.0,
"EmployeeContribution": 4.0,
"Frequency": "sample string 5",
"AdjustedEmployerContribution": 3.0,
"AdjustedEmployeeContribution": 4.0
},
{
"ID": 1,
"Description": "sample string 2",
"EmployerContribution": 3.0,
"EmployeeContribution": 4.0,
"Frequency": "sample string 5",
"AdjustedEmployerContribution": 3.0,
"AdjustedEmployeeContribution": 4.0
}
]
text/html
[{"ID":1,"Description":"sample string 2","EmployerContribution":3.0,"EmployeeContribution":4.0,"Frequency":"sample string 5","AdjustedEmployerContribution":3.0,"AdjustedEmployeeContribution":4.0},{"ID":1,"Description":"sample string 2","EmployerContribution":3.0,"EmployeeContribution":4.0,"Frequency":"sample string 5","AdjustedEmployerContribution":3.0,"AdjustedEmployeeContribution":4.0},{"ID":1,"Description":"sample string 2","EmployerContribution":3.0,"EmployeeContribution":4.0,"Frequency":"sample string 5","AdjustedEmployerContribution":3.0,"AdjustedEmployeeContribution":4.0}]
application/xml, text/xml
<ArrayOfRewardStatementItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Carval.SelfService.BLL.PayDetails">
<RewardStatementItem>
<Description>sample string 2</Description>
<EmployeeContribution>4</EmployeeContribution>
<EmployerContribution>3</EmployerContribution>
<Frequency>sample string 5</Frequency>
<ID>1</ID>
</RewardStatementItem>
<RewardStatementItem>
<Description>sample string 2</Description>
<EmployeeContribution>4</EmployeeContribution>
<EmployerContribution>3</EmployerContribution>
<Frequency>sample string 5</Frequency>
<ID>1</ID>
</RewardStatementItem>
<RewardStatementItem>
<Description>sample string 2</Description>
<EmployeeContribution>4</EmployeeContribution>
<EmployerContribution>3</EmployerContribution>
<Frequency>sample string 5</Frequency>
<ID>1</ID>
</RewardStatementItem>
</ArrayOfRewardStatementItem>