POST api/OrigoQuote?userId={userId}

Submits the supplied quote details to the providers. Quote details must be a valid Origo XML message. Returns the urls for fetching the best income, comparison graph and full comparison document for the quote.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

Provider user id

globally unique identifier

None.

Body Parameters

None.

Response Information

Resource Description

ComparisonUrls
NameDescriptionTypeAdditional information
BestIncomeUrl

string

None.

BestCostUrl

string

None.

GraphUrl

string

None.

DocumentUrl

string

None.

MIUrl

string

None.

Response Formats

application/json, text/json

Sample:
{
  "BestIncomeUrl": "sample string 1",
  "BestCostUrl": "sample string 2",
  "GraphUrl": "sample string 3",
  "DocumentUrl": "sample string 4",
  "MIUrl": "sample string 5",
  "WoMReportLinkUrl": "sample string 6"
}

text/html

Sample:
{"BestIncomeUrl":"sample string 1","BestCostUrl":"sample string 2","GraphUrl":"sample string 3","DocumentUrl":"sample string 4","MIUrl":"sample string 5","WoMReportLinkUrl":"sample string 6"}

application/xml, text/xml

Sample:
<ComparisonUrls xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <BestIncomeUrl>sample string 1</BestIncomeUrl>
  <BestCostUrl>sample string 2</BestCostUrl>
  <GraphUrl>sample string 3</GraphUrl>
  <DocumentUrl>sample string 4</DocumentUrl>
  <MIUrl>sample string 5</MIUrl>
  <WoMReportLinkUrl>sample string 6</WoMReportLinkUrl>
</ComparisonUrls>