POST api/Retailer/ShortQuotationSearch
Create short quotation search
Request Information
URI Parameters
None.
Body Parameters
ShortQuotationSearchRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerDetails | ShortCustomerDetailsModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerDetails": {
"IPAddress": "sample string 1",
"Title": "sample string 2",
"CustomerEmail": "sample string 3",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"DateOfBirth": "2026-02-06T01:44:47.3082351+00:00",
"CurrentAddress": {
"PostCode": "sample string 1",
"City": "sample string 2",
"Flat": "sample string 3",
"HouseNumber": "sample string 4",
"HouseName": "sample string 5",
"Street": "sample string 6"
}
}
}
text/html
Sample:
{"CustomerDetails":{"IPAddress":"sample string 1","Title":"sample string 2","CustomerEmail":"sample string 3","FirstName":"sample string 4","LastName":"sample string 5","DateOfBirth":"2026-02-06T01:44:47.3082351+00:00","CurrentAddress":{"PostCode":"sample string 1","City":"sample string 2","Flat":"sample string 3","HouseNumber":"sample string 4","HouseName":"sample string 5","Street":"sample string 6"}}}
application/xml, text/xml
Sample:
<ShortQuotationSearchRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OmniPort.API.Services.APIRequests.QuotationSearchRequestModels">
<CustomerDetails>
<CurrentAddress xmlns:d3p1="http://schemas.datacontract.org/2004/07/OmniPort.API.Services.CommonModels">
<d3p1:City>sample string 2</d3p1:City>
<d3p1:Flat>sample string 3</d3p1:Flat>
<d3p1:HouseName>sample string 5</d3p1:HouseName>
<d3p1:HouseNumber>sample string 4</d3p1:HouseNumber>
<d3p1:PostCode>sample string 1</d3p1:PostCode>
<d3p1:Street>sample string 6</d3p1:Street>
</CurrentAddress>
<CustomerEmail>sample string 3</CustomerEmail>
<DateOfBirth>2026-02-06T01:44:47.3082351+00:00</DateOfBirth>
<FirstName>sample string 4</FirstName>
<IPAddress>sample string 1</IPAddress>
<LastName>sample string 5</LastName>
<Title>sample string 2</Title>
</CustomerDetails>
</ShortQuotationSearchRequestModel>
Response Information
Resource Description
If the credit check is with status declined there will be no offer details.
QuotationSearchResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| QuotationSearchId | globally unique identifier |
None. |
|
| Status | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"QuotationSearchId": "7a3db2c5-c896-4f03-bc16-9e11d1911846",
"Status": "sample string 2"
}
text/html
Sample:
{"QuotationSearchId":"7a3db2c5-c896-4f03-bc16-9e11d1911846","Status":"sample string 2"}
application/xml, text/xml
Sample:
<QuotationSearchResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OmniPort.API.Services.APIResponses.QuotationSearchResponses"> <QuotationSearchId>7a3db2c5-c896-4f03-bc16-9e11d1911846</QuotationSearchId> <Status>sample string 2</Status> </QuotationSearchResponse>