POST api/PFLoanRepayProcess/Save

Request Information

URI Parameters

None.

Body Parameters

PFLoanRepayProcessSaveVM
NameDescriptionTypeAdditional information
BookId

integer

Required

ProcessDate

string

Required

Refno

string

Required

String length: inclusive between 0 and 20

Months

MonthsLookupVM

Required

Year

integer

Required

CreateUser

integer

Required

CreateIp

string

Required

String length: inclusive between 0 and 20

FinYearId

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "BookId": 1,
  "ProcessDate": "sample string 2",
  "Refno": "sample string 3",
  "Months": {
    "MonthId": 1,
    "MonthName": "sample string 2"
  },
  "Year": 4,
  "CreateUser": 5,
  "CreateIp": "sample string 6",
  "FinYearId": 7
}

application/xml, text/xml

Sample:
<PFLoanRepayProcessSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <BookId>1</BookId>
  <CreateIp>sample string 6</CreateIp>
  <CreateUser>5</CreateUser>
  <FinYearId>7</FinYearId>
  <Months>
    <MonthId>1</MonthId>
    <MonthName>sample string 2</MonthName>
  </Months>
  <ProcessDate>sample string 2</ProcessDate>
  <Refno>sample string 3</Refno>
  <Year>4</Year>
</PFLoanRepayProcessSaveVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.