Request Information

URI Parameters

NameDescriptionTypeAdditional information
quoteId

The app identifier.

integer

Required

selectedRate

The selected rate.

decimal number

Required

lockPeriod

The lock period.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The application quote.

MyAccount.Quote
NameDescriptionTypeAdditional information
id

Gets or sets the quote identifier.

string

None.

default

Gets or sets a value indicating whether it is the default quote.

boolean

None.

feesItemization

Gets or sets the fees itemization.

FeesItemizationFacade

None.

isFull

Gets or sets a value indicating whether the quote is full.

boolean

None.

isValidLockPeriod

Gets or sets a value indicating whether this lock period is valid.

boolean

None.

lockPeriod

Gets or sets a value indicating the lock period.

integer

None.

notifications

Gets the notifications.

None.

Response Formats

application/json, text/json

Sample:
{
  "id": "sample String 1",
  "default": true,
  "feesItemization": null,
  "isFull": true,
  "isValidLockPeriod": true,
  "lockPeriod": 5,
  "notifications": []
}

text/html

Sample:
{"id":"sample String 1","default":true,"feesItemization":null,"isFull":true,"isValidLockPeriod":true,"lockPeriod":5,"notifications":[]}

application/xml, text/xml

Sample:
<Quote xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <QuoteId>sample String 1</QuoteId>
  <Default>true</Default>
  <IsFull>true</IsFull>
  <IsValidLockPeriod>true</IsValidLockPeriod>
  <LockPeriod>5</LockPeriod>
</Quote>