Request Information

URI Parameters

None.

Body Parameters

The loan quote request model.

LoanQuote.LoanQuoteRequest
NameDescriptionTypeAdditional information
context

OutputStyle

None.

emailSubject

string

None.

sender

LoanQuote.Person

None.

receivers

Collection of LoanQuote.Person

None.

message

string

None.

form

Form

None.

Request Formats

application/json, text/json

Sample:
{
  "context": 0,
  "emailSubject": "sample String 1",
  "sender": {
    "firstName": "sample String 1",
    "lastName": "sample String 2",
    "nickName": "sample String 3",
    "email": "sample String 4"
  },
  "receivers": [
    {
      "firstName": "sample String 1",
      "lastName": "sample String 2",
      "nickName": "sample String 3",
      "email": "sample String 4"
    },
    {
      "firstName": "sample String 1",
      "lastName": "sample String 2",
      "nickName": "sample String 3",
      "email": "sample String 4"
    }
  ],
  "message": "sample String 2",
  "form": null
}

text/html

Sample:
{"context":0,"emailSubject":"sample String 1","sender":{"firstName":"sample String 1","lastName":"sample String 2","nickName":"sample String 3","email":"sample String 4"},"receivers":[{"firstName":"sample String 1","lastName":"sample String 2","nickName":"sample String 3","email":"sample String 4"},{"firstName":"sample String 1","lastName":"sample String 2","nickName":"sample String 3","email":"sample String 4"}],"message":"sample String 2","form":null}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage.

Collection of DeprecatedRPCError
NameDescriptionTypeAdditional information
id

Gets the RPC error identifier.

globally unique identifier

None.

message

Gets or sets the message.

string

None.

rpcType

Gets or sets the RPC type.

string

None.

status

Gets or sets the status.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "4810887c-5748-4892-a2b1-04450f0756c7",
    "message": "sample String 1",
    "rpcType": "sample String 2",
    "status": "sample String 3"
  },
  {
    "id": "4810887c-5748-4892-a2b1-04450f0756c7",
    "message": "sample String 1",
    "rpcType": "sample String 2",
    "status": "sample String 3"
  }
]

text/html

Sample:
[{"id":"4810887c-5748-4892-a2b1-04450f0756c7","message":"sample String 1","rpcType":"sample String 2","status":"sample String 3"},{"id":"4810887c-5748-4892-a2b1-04450f0756c7","message":"sample String 1","rpcType":"sample String 2","status":"sample String 3"}]

application/xml, text/xml

Sample:
<ArrayOfDeprecatedRPCError xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DeprecatedRPCError>
    <Message>sample String 1</Message>
    <RPCType>sample String 2</RPCType>
    <Status>sample String 3</Status>
  </DeprecatedRPCError>
  <DeprecatedRPCError>
    <Message>sample String 1</Message>
    <RPCType>sample String 2</RPCType>
    <Status>sample String 3</Status>
  </DeprecatedRPCError>
</ArrayOfDeprecatedRPCError>