POST api/FMPP/GetManualLendingLink

Request Information

URI Parameters

None.

Body Parameters

GetManualLendingLinkInputModel
NameDescriptionTypeAdditional information
Investor_id

string

None.

IFAID

string

None.

IFAKey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Investor_id": "sample string 1",
  "IFAID": "sample string 2",
  "IFAKey": "sample string 3"
}

application/xml, text/xml

Sample:
<GetManualLendingLinkInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LendenWrapper.Models">
  <IFAID>sample string 2</IFAID>
  <IFAKey>sample string 3</IFAKey>
  <Investor_id>sample string 1</Investor_id>
</GetManualLendingLinkInputModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetManualLendingLinkOutputModel
NameDescriptionTypeAdditional information
URL

string

None.

Status

string

None.

Message

string

None.

LCResponse

LCResponse

None.

IFAID

string

None.

IFAKey

string

None.

Response Formats

application/json, text/json

Sample:
{
  "URL": "sample string 1",
  "Status": "sample string 2",
  "Message": "sample string 3",
  "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 4",
  "IFAKey": "sample string 5"
}

application/xml, text/xml

Sample:
<GetManualLendingLinkOutputModel 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>
  <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 3</Message>
  <Status>sample string 2</Status>
  <URL>sample string 1</URL>
</GetManualLendingLinkOutputModel>