GET request/quickquote/QuoteList
Display a list of quickquotes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
QuickQuoteResults| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyName | string |
None. |
|
| CustomerId | integer |
None. |
|
| FuelId | byte |
None. |
|
| FuelType | FuelType |
None. |
|
| IsAmr | byte |
None. |
|
| MeterId | integer |
None. |
|
| Mpan | string |
None. |
|
| Mprn | string |
None. |
|
| QuoteCreatedDate | date |
None. |
|
| QuoteId | integer |
None. |
|
| RegisteredAddress | AddressInfo |
None. |
|
| SiteId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"customerId": 1,
"companyName": "sample string 1",
"registeredAddress": {
"line1": "sample string 1",
"line2": "sample string 2",
"city": "sample string 3",
"county": "sample string 4",
"postcode": "sample string 5"
},
"meterId": 1,
"siteId": 1,
"fuelId": 64,
"fuelType": "Gas",
"mpan": "sample string 2",
"mprn": "sample string 3",
"isAmr": 64,
"quoteId": 4,
"quoteCreatedDate": "2025-11-05T12:23:29.1863412+00:00"
}
text/html
Sample:
{"customerId":1,"companyName":"sample string 1","registeredAddress":{"line1":"sample string 1","line2":"sample string 2","city":"sample string 3","county":"sample string 4","postcode":"sample string 5"},"meterId":1,"siteId":1,"fuelId":64,"fuelType":"Gas","mpan":"sample string 2","mprn":"sample string 3","isAmr":64,"quoteId":4,"quoteCreatedDate":"2025-11-05T12:23:29.1863412+00:00"}
application/xml, text/xml
Sample:
<QuickQuoteResults xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.QuickQuoteDto">
<CompanyName>sample string 1</CompanyName>
<CustomerId>1</CustomerId>
<FuelId>64</FuelId>
<FuelType>Gas</FuelType>
<IsAmr>64</IsAmr>
<MeterId>1</MeterId>
<Mpan>sample string 2</Mpan>
<Mprn>sample string 3</Mprn>
<QuoteCreatedDate>2025-11-05T12:23:29.1863412+00:00</QuoteCreatedDate>
<QuoteId>4</QuoteId>
<RegisteredAddress xmlns:d2p1="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.Default">
<d2p1:City>sample string 3</d2p1:City>
<d2p1:County>sample string 4</d2p1:County>
<d2p1:Line1>sample string 1</d2p1:Line1>
<d2p1:Line2>sample string 2</d2p1:Line2>
<d2p1:Postcode>sample string 5</d2p1:Postcode>
</RegisteredAddress>
<SiteId>1</SiteId>
</QuickQuoteResults>