POST api/RecommendEmpForIncrement
Request Information
URI Parameters
None.
Body Parameters
Collection of IncrementModule| Name | Description | Type | Additional information |
|---|---|---|---|
| UserType | string |
None. |
|
| EmployeeID | integer |
None. |
|
| RecommendedBy | integer |
None. |
|
| IsRecommended | boolean |
None. |
|
| RecommendedAmount | decimal number |
None. |
|
| RecommendedRemark | string |
None. |
|
| ApproveBy | integer |
None. |
|
| ApproveAmount | decimal number |
None. |
|
| ApproveRemark | string |
None. |
|
| YearID | integer |
None. |
|
| MonthID | integer |
None. |
|
| ForThreeMonth | integer |
None. |
|
| ForSixMonth | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"UserType": "sample string 1",
"EmployeeID": 2,
"RecommendedBy": 3,
"IsRecommended": true,
"RecommendedAmount": 5.1,
"RecommendedRemark": "sample string 6",
"ApproveBy": 7,
"ApproveAmount": 8.1,
"ApproveRemark": "sample string 9",
"YearID": 10,
"MonthID": 11,
"ForThreeMonth": 12,
"ForSixMonth": 13
},
{
"UserType": "sample string 1",
"EmployeeID": 2,
"RecommendedBy": 3,
"IsRecommended": true,
"RecommendedAmount": 5.1,
"RecommendedRemark": "sample string 6",
"ApproveBy": 7,
"ApproveAmount": 8.1,
"ApproveRemark": "sample string 9",
"YearID": 10,
"MonthID": 11,
"ForThreeMonth": 12,
"ForSixMonth": 13
}
]
application/xml, text/xml
Sample:
<ArrayOfIncrementModule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PayrollApp.Models">
<IncrementModule>
<ApproveAmount>8.1</ApproveAmount>
<ApproveBy>7</ApproveBy>
<ApproveRemark>sample string 9</ApproveRemark>
<EmployeeID>2</EmployeeID>
<ForSixMonth>13</ForSixMonth>
<ForThreeMonth>12</ForThreeMonth>
<IsRecommended>true</IsRecommended>
<MonthID>11</MonthID>
<RecommendedAmount>5.1</RecommendedAmount>
<RecommendedBy>3</RecommendedBy>
<RecommendedRemark>sample string 6</RecommendedRemark>
<UserType>sample string 1</UserType>
<YearID>10</YearID>
</IncrementModule>
<IncrementModule>
<ApproveAmount>8.1</ApproveAmount>
<ApproveBy>7</ApproveBy>
<ApproveRemark>sample string 9</ApproveRemark>
<EmployeeID>2</EmployeeID>
<ForSixMonth>13</ForSixMonth>
<ForThreeMonth>12</ForThreeMonth>
<IsRecommended>true</IsRecommended>
<MonthID>11</MonthID>
<RecommendedAmount>5.1</RecommendedAmount>
<RecommendedBy>3</RecommendedBy>
<RecommendedRemark>sample string 6</RecommendedRemark>
<UserType>sample string 1</UserType>
<YearID>10</YearID>
</IncrementModule>
</ArrayOfIncrementModule>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.