POST api/AgrimHousingFinance/SaveTopup

Request Information

URI Parameters

None.

Body Parameters

TopUpRequest
NameDescriptionTypeAdditional information
ParentApplicationNo

string

None.

ChildApplicationNo

string

None.

CustomerId

string

None.

LoanAmount

decimal number

None.

ROI

decimal number

None.

Tenure

integer

None.

EMI

decimal number

None.

MarketValue

decimal number

None.

IncomeValue

decimal number

None.

FOIR

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "ParentApplicationNo": "sample string 1",
  "ChildApplicationNo": "sample string 2",
  "CustomerId": "sample string 3",
  "LoanAmount": 4.0,
  "ROI": 5.0,
  "Tenure": 6,
  "EMI": 7.0,
  "MarketValue": 8.0,
  "IncomeValue": 9.0,
  "FOIR": 10.0
}

application/xml, text/xml

Sample:
<TopUpRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgrimHousingFinance.Models">
  <ChildApplicationNo>sample string 2</ChildApplicationNo>
  <CustomerId>sample string 3</CustomerId>
  <EMI>7</EMI>
  <FOIR>10</FOIR>
  <IncomeValue>9</IncomeValue>
  <LoanAmount>4</LoanAmount>
  <MarketValue>8</MarketValue>
  <ParentApplicationNo>sample string 1</ParentApplicationNo>
  <ROI>5</ROI>
  <Tenure>6</Tenure>
</TopUpRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EnrollmentRes
NameDescriptionTypeAdditional information
ResponseCode

string

None.

ResponseMessage

string

None.

ApplicationFormNumber

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": "sample string 1",
  "ResponseMessage": "sample string 2",
  "ApplicationFormNumber": "sample string 3"
}

application/xml, text/xml

Sample:
<EnrollmentRes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgrimHousingFinance.Models">
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
  <ApplicationFormNumber>sample string 3</ApplicationFormNumber>
</EnrollmentRes>