POST api/PFClosingSlab/Save
Request Information
URI Parameters
None.
Body Parameters
PFClosingSlabSaveVM| Name | Description | Type | Additional information |
|---|---|---|---|
| BookId | integer |
Required |
|
| CreateUser | integer |
Required |
|
| CreateIp | string |
Required String length: inclusive between 0 and 20 |
|
| SlabList | Collection of PFClosingSlabByIdVM |
Required |
Request Formats
application/json, text/json
Sample:
{
"BookId": 1,
"CreateUser": 2,
"CreateIp": "sample string 3",
"SlabList": [
{
"PeriodFrom": 1,
"PeriodTo": 2,
"MemberPerc": 3.0,
"EstablishPerc": 4.0
},
{
"PeriodFrom": 1,
"PeriodTo": 2,
"MemberPerc": 3.0,
"EstablishPerc": 4.0
}
]
}
application/xml, text/xml
Sample:
<PFClosingSlabSaveVM 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>
<PFClosingSlabByIdVM>
<EstablishPerc>4</EstablishPerc>
<MemberPerc>3</MemberPerc>
<PeriodFrom>1</PeriodFrom>
<PeriodTo>2</PeriodTo>
</PFClosingSlabByIdVM>
<PFClosingSlabByIdVM>
<EstablishPerc>4</EstablishPerc>
<MemberPerc>3</MemberPerc>
<PeriodFrom>1</PeriodFrom>
<PeriodTo>2</PeriodTo>
</PFClosingSlabByIdVM>
</SlabList>
</PFClosingSlabSaveVM>
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.