Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| loanProductId |
The loan product identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The loan product.
Micro.LoanProduct| Name | Description | Type | Additional information |
|---|---|---|---|
| amortizationType |
Gets or sets the type of the amortization. |
string |
None. |
| armTerm |
Gets or sets the ARM term identifier. |
integer |
None. |
| description |
Gets or sets the description. |
string |
None. |
| hasIncomeRestrictions |
Gets or sets a value indicating whether the loan product has income restrictions. |
boolean |
None. |
| isActive |
Gets or sets a value indicating whether this is active. |
boolean |
None. |
| isPublic |
Gets or sets a value indicating whether this is public. |
boolean |
None. |
| id |
Gets or sets the loan product identifier. |
integer |
None. |
| loanProgram |
Gets or sets the loan program identifier. |
integer |
None. |
| state |
Gets or sets the state. |
string |
None. |
| term |
Gets or sets the term. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"amortizationType": "sample String 1",
"armTerm": "1",
"description": "sample String 2",
"hasIncomeRestrictions": true,
"isActive": true,
"isPublic": true,
"id": "6",
"loanProgram": "7",
"state": "sample String 8",
"term": 9
}
text/html
Sample:
{"amortizationType":"sample String 1","armTerm":"1","description":"sample String 2","hasIncomeRestrictions":true,"isActive":true,"isPublic":true,"id":"6","loanProgram":"7","state":"sample String 8","term":9}
application/xml, text/xml
Sample:
<LoanProduct xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AmortizationType>sample String 1</AmortizationType> <ARMTermId>1</ARMTermId> <Description>sample String 2</Description> <HasIncomeRestrictions>true</HasIncomeRestrictions> <IsActive>true</IsActive> <IsPublic>true</IsPublic> <LoanProductId>6</LoanProductId> <LoanProgramId>7</LoanProgramId> <State>sample String 8</State> <Term>9</Term> </LoanProduct>