POST api/PFWithdrawalSlab/Save
Request Information
URI Parameters
None.
Body Parameters
PFWithdrawalSlabSaveVM| Name | Description | Type | Additional information |
|---|---|---|---|
| BookId | integer |
Required |
|
| CreateUser | integer |
Required |
|
| CreateIp | string |
Required String length: inclusive between 0 and 20 |
|
| SlabList | Collection of PFWithdrawalSlabByIdVM |
Required |
Request Formats
application/json, text/json
Sample:
{
"BookId": 1,
"CreateUser": 2,
"CreateIp": "sample string 3",
"SlabList": [
{
"PeriodFrom": 1,
"PeriodTo": 2,
"WithdrawPerc": 3.0
},
{
"PeriodFrom": 1,
"PeriodTo": 2,
"WithdrawPerc": 3.0
}
]
}
application/xml, text/xml
Sample:
<PFWithdrawalSlabSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<BookId>1</BookId>
<CreateIp>sample string 3</CreateIp>
<CreateUser>2</CreateUser>
<SlabList>
<PFWithdrawalSlabByIdVM>
<PeriodFrom>1</PeriodFrom>
<PeriodTo>2</PeriodTo>
<WithdrawPerc>3</WithdrawPerc>
</PFWithdrawalSlabByIdVM>
<PFWithdrawalSlabByIdVM>
<PeriodFrom>1</PeriodFrom>
<PeriodTo>2</PeriodTo>
<WithdrawPerc>3</WithdrawPerc>
</PFWithdrawalSlabByIdVM>
</SlabList>
</PFWithdrawalSlabSaveVM>
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.