The quote search request provides the ability to view quotes made by a particular brand. This is a powerful tool, and can be used to find one particular quote or to display all made by a brand. A complete reference of what can be included in a quote search request is given below.
The minimum information a quote create request should contain is: Login details.
XML Structure
The structure of this XML will be the following
The response returned will include the Return Status and Quotes node.
No results returned
It is possible for the search to be successful and to have no results returned, if the Brand from the Login Details (or the one that has entered in the Brand ID has made no quotes.
XML Structure
This request will return all quotes made by the brand associated with these login details.
<QuoteSearchRequest>
<LoginDetails>
<Login>DemoLogin</Login>
<Password>DemoLogin</Password>
</LoginDetails>
</QuoteSearchRequest>
iVectorConnect finds two quotes, 1053329/1 & 1053325/1.
<QuoteSearchResponse>
<ReturnStatus>
<Success>true</Success>
<Exceptions />
<ThirdPartyErrors />
</ReturnStatus>
<Quotes>
<Quote>
<QuoteReference>1053329/1</QuoteReference>
<TradeReference />
<Status>New</Status>
<LeadCustomerFirstName>Tom</LeadCustomerFirstName>
<LeadCustomerLastName>Cruise</LeadCustomerLastName>
<TotalPax>2</TotalPax>
<BookingDate>2019-11-22T11:38:51.05</BookingDate>
<ArrivalDate>2020-02-22T00:00:00</ArrivalDate>
<Duration>7</Duration>
<ArrivalAirportID>0</ArrivalAirportID>
<DepartureAirportID>0</DepartureAirportID>
<GeographyLevel1ID>0</GeographyLevel1ID>
<GeographyLevel2ID>0</GeographyLevel2ID>
<GeographyLevel3ID>0</GeographyLevel3ID>
<LastReturnDate>2020-02-29T00:00:00</LastReturnDate>
<TotalPrice>3278.85</TotalPrice>
<TotalCommission>0.00</TotalCommission>
<ComponentSummary>
<Component>
<ComponentType>QuoteProperty</ComponentType>
<hlpComponentName>demoname</hlpComponentName>
</Component>
<Component>
<ComponentType>QuoteExtra</ComponentType>
<hlpComponentName>demoname</hlpComponentName>
</Component>
</ComponentSummary>
</Quote>
<Quote>
<QuoteReference>1053325/1</QuoteReference>
<TradeReference />
<Status>New</Status>
<LeadCustomerFirstName>Test</LeadCustomerFirstName>
<LeadCustomerLastName>Test</LeadCustomerLastName>
<TotalPax>2</TotalPax>
<BookingDate>2019-11-18T15:02:49.96</BookingDate>
<ArrivalDate>2020-01-22T00:00:00</ArrivalDate>
<Duration>7</Duration>
<ArrivalAirportID>0</ArrivalAirportID>
<DepartureAirportID>0</DepartureAirportID>
<GeographyLevel1ID>18</GeographyLevel1ID>
<GeographyLevel2ID>138</GeographyLevel2ID>
<GeographyLevel3ID>115</GeographyLevel3ID>
<LastReturnDate>2020-01-29T00:00:00</LastReturnDate>
<TotalPrice>1719.10</TotalPrice>
<TotalCommission>0.00</TotalCommission>
<ComponentSummary>
<Component>
<ComponentType>QuoteProperty</ComponentType>
<hlpComponentName>demoname</hlpComponentName>
</Component>
</ComponentSummary>
</Quote>
</Quotes>
</QuoteSearchResponse>