GET api/FleetGetEstimates?EstimateNumber={EstimateNumber}&CustomerName={CustomerName}&CreatedDateFrom={CreatedDateFrom}&CreatedDateTo={CreatedDateTo}&UserId={UserId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| EstimateNumber | string |
Required |
|
| CustomerName | string |
Required |
|
| CreatedDateFrom | date |
Required |
|
| CreatedDateTo | date |
Required |
|
| UserId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EstimateListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EstimateNumber | string |
None. |
|
| TransactionDateE | date |
None. |
|
| CustomerName | string |
None. |
|
| Channel | string |
None. |
|
| CreatedBy | string |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EstimateNumber": "sample string 1",
"TransactionDateE": "2026-04-08T15:01:32.2252244+02:00",
"CustomerName": "sample string 3",
"Channel": "sample string 4",
"CreatedBy": "sample string 5",
"IsActive": true
},
{
"EstimateNumber": "sample string 1",
"TransactionDateE": "2026-04-08T15:01:32.2252244+02:00",
"CustomerName": "sample string 3",
"Channel": "sample string 4",
"CreatedBy": "sample string 5",
"IsActive": true
}
]
application/xml, text/xml
Sample:
<ArrayOfEstimateListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuoteEngineDta.FleetModels.Estimate">
<EstimateListModel>
<Channel>sample string 4</Channel>
<CreatedBy>sample string 5</CreatedBy>
<CustomerName>sample string 3</CustomerName>
<EstimateNumber>sample string 1</EstimateNumber>
<IsActive>true</IsActive>
<TransactionDateE>2026-04-08T15:01:32.2252244+02:00</TransactionDateE>
</EstimateListModel>
<EstimateListModel>
<Channel>sample string 4</Channel>
<CreatedBy>sample string 5</CreatedBy>
<CustomerName>sample string 3</CustomerName>
<EstimateNumber>sample string 1</EstimateNumber>
<IsActive>true</IsActive>
<TransactionDateE>2026-04-08T15:01:32.2252244+02:00</TransactionDateE>
</EstimateListModel>
</ArrayOfEstimateListModel>