POST _api/LoanAPI/UpdateFees

Request Information

URI Parameters

None.

Body Parameters

FeesParam
NameDescriptionTypeAdditional information
Id

integer

None.

FeeAmt

decimal number

Required

FeeRate

decimal number

Required

RefNo

string

Required

UserName

string

Required

MaxFees

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "FeeAmt": 2.0,
  "FeeRate": 3.0,
  "RefNo": "sample string 4",
  "UserName": "sample string 5",
  "MaxFees": 6.0
}

application/xml, text/xml

Sample:
<FeesParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SigEDMSAPI.Models">
  <FeeAmt>2</FeeAmt>
  <FeeRate>3</FeeRate>
  <Id>1</Id>
  <MaxFees>6</MaxFees>
  <RefNo>sample string 4</RefNo>
  <UserName>sample string 5</UserName>
</FeesParam>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'FeesParam'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.