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": "2025-12-20T00:57:35.307232+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":"2025-12-20T00:57:35.307232+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>2025-12-20T00:57:35.307232+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": "78dbe6c7-bbb2-4699-9432-5d121ce95d48",
"Status": "sample string 2"
}
text/html
Sample:
{"QuotationSearchId":"78dbe6c7-bbb2-4699-9432-5d121ce95d48","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>78dbe6c7-bbb2-4699-9432-5d121ce95d48</QuotationSearchId> <Status>sample string 2</Status> </QuotationSearchResponse>