Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| loanProgramId |
The loan program identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The loan program.
Micro.LoanProgram| Name | Description | Type | Additional information |
|---|---|---|---|
| defaultMIRateType |
Gets or sets the default mi rate type 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 program identifier. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"defaultMIRateType": "1",
"description": "sample String 2",
"hasIncomeRestrictions": true,
"isActive": true,
"isPublic": true,
"id": "6"
}
text/html
Sample:
{"defaultMIRateType":"1","description":"sample String 2","hasIncomeRestrictions":true,"isActive":true,"isPublic":true,"id":"6"}
application/xml, text/xml
Sample:
<LoanProgram xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DefaultMIRateTypeId>1</DefaultMIRateTypeId> <Description>sample String 2</Description> <HasIncomeRestrictions>true</HasIncomeRestrictions> <IsActive>true</IsActive> <IsPublic>true</IsPublic> <LoanProgramId>6</LoanProgramId> </LoanProgram>