POST api/loans/CreateElpLoan
Request Information
URI Parameters
None.
Body Parameters
CreateElpLoanRequestObject| Name | Description | Type | Additional information |
|---|---|---|---|
| TransactionTrackingRef | string |
None. |
|
| LoanProductCode | string |
None. |
|
| CustomerID | string |
None. |
|
| LinkedAccountNumber | string |
None. |
|
| CollateralDetails | string |
None. |
|
| CollateralType | string |
None. |
|
| ComputationMode | decimal number |
None. |
|
| Tenure | integer |
None. |
|
| Moratorium | decimal number |
None. |
|
| Amount | decimal number |
None. |
|
| InterestRate | decimal number |
None. |
|
| PrincipalPaymentFrequency | decimal number |
None. |
|
| InterestPaymentFrequency | decimal number |
None. |
|
| InterestRepaymentType | decimal number |
None. |
|
| PrincipalRepaymentType | decimal number |
None. |
|
| LoanReason | string |
None. |
|
| LoanFeeIDs | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TransactionTrackingRef": "sample string 1",
"LoanProductCode": "sample string 2",
"CustomerID": "sample string 3",
"LinkedAccountNumber": "sample string 4",
"CollateralDetails": "sample string 5",
"CollateralType": "sample string 6",
"ComputationMode": 7.1,
"Tenure": 8,
"Moratorium": 9.1,
"Amount": 10.0,
"InterestRate": 11.1,
"PrincipalPaymentFrequency": 12.1,
"InterestPaymentFrequency": 13.1,
"InterestRepaymentType": 14.1,
"PrincipalRepaymentType": 15.1,
"LoanReason": "sample string 16",
"LoanFeeIDs": [
1,
2
]
}
application/xml, text/xml
Sample:
<CreateElpLoanRequestObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BankOneISWDBAPI.Models.DTO.RequestResponseDto">
<Amount>10</Amount>
<CollateralDetails>sample string 5</CollateralDetails>
<CollateralType>sample string 6</CollateralType>
<ComputationMode>7.1</ComputationMode>
<CustomerID>sample string 3</CustomerID>
<InterestPaymentFrequency>13.1</InterestPaymentFrequency>
<InterestRate>11.1</InterestRate>
<InterestRepaymentType>14.1</InterestRepaymentType>
<LinkedAccountNumber>sample string 4</LinkedAccountNumber>
<LoanFeeIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</LoanFeeIDs>
<LoanProductCode>sample string 2</LoanProductCode>
<LoanReason>sample string 16</LoanReason>
<Moratorium>9.1</Moratorium>
<PrincipalPaymentFrequency>12.1</PrincipalPaymentFrequency>
<PrincipalRepaymentType>15.1</PrincipalRepaymentType>
<Tenure>8</Tenure>
<TransactionTrackingRef>sample string 1</TransactionTrackingRef>
</CreateElpLoanRequestObject>
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.