POST api/FMPP/GetInvestedLoanList
Request Information
URI Parameters
None.
Body Parameters
InvestedLoanListInputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SchemeID | string |
None. |
|
| Limit | integer |
None. |
|
| Offset | integer |
None. |
|
| IFAID | string |
None. |
|
| IFAKey | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SchemeID": "sample string 1",
"Limit": 2,
"Offset": 3,
"IFAID": "sample string 4",
"IFAKey": "sample string 5"
}
application/xml, text/xml
Sample:
<InvestedLoanListInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LendenWrapper.Models"> <IFAID>sample string 4</IFAID> <IFAKey>sample string 5</IFAKey> <Limit>2</Limit> <Offset>3</Offset> <SchemeID>sample string 1</SchemeID> </InvestedLoanListInputModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
InvestedLoanListOutputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Message | string |
None. |
|
| LCResponse | LCResponse |
None. |
|
| IFAID | string |
None. |
|
| IFAKey | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Message": "sample string 2",
"LCResponse": {
"code": "sample string 1",
"message": "sample string 2",
"Data": {
"checksum": "sample string 1",
"payload": "sample string 2"
},
"IFAID": "sample string 3",
"IFAKey": "sample string 4"
},
"IFAID": "sample string 3",
"IFAKey": "sample string 4"
}
application/xml, text/xml
Sample:
<InvestedLoanListOutputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LendenWrapper.Models">
<IFAID>sample string 3</IFAID>
<IFAKey>sample string 4</IFAKey>
<LCResponse>
<IFAID>sample string 3</IFAID>
<IFAKey>sample string 4</IFAKey>
<Data>
<checksum>sample string 1</checksum>
<payload>sample string 2</payload>
</Data>
<code>sample string 1</code>
<message>sample string 2</message>
</LCResponse>
<Message>sample string 2</Message>
<Status>sample string 1</Status>
</InvestedLoanListOutputModel>