GET api/tirescanv2/date/{fromDate}/{toDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fromDate | date |
Required |
|
| toDate | date |
Default value is Null |
Body Parameters
None.
Remarks
None.
Example
None.
Response Information
Resource Description
Collection of TireScanHeadResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| LicensePlate | string |
None. |
|
| Season | Season |
None. |
|
| ScanDateTime | date |
None. |
|
| BranchId | integer |
None. |
|
| ContactName | string |
None. |
|
| ContactEmail | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "be47dd9a-feae-4d23-ba10-b08fff12a105",
"LicensePlate": "sample string 2",
"Season": 1,
"ScanDateTime": "12/21/2025 1:03:07 PM",
"BranchId": 4,
"ContactName": "sample string 5",
"ContactEmail": "sample string 6"
},
{
"Id": "be47dd9a-feae-4d23-ba10-b08fff12a105",
"LicensePlate": "sample string 2",
"Season": 1,
"ScanDateTime": "12/21/2025 1:03:07 PM",
"BranchId": 4,
"ContactName": "sample string 5",
"ContactEmail": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfTireScanHeadResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.TireScan.V2">
<TireScanHeadResponse>
<BranchId>4</BranchId>
<ContactEmail>sample string 6</ContactEmail>
<ContactName>sample string 5</ContactName>
<Id>be47dd9a-feae-4d23-ba10-b08fff12a105</Id>
<LicensePlate>sample string 2</LicensePlate>
<ScanDateTime>2025-12-21T13:03:07.4880032+00:00</ScanDateTime>
<Season>Summer</Season>
</TireScanHeadResponse>
<TireScanHeadResponse>
<BranchId>4</BranchId>
<ContactEmail>sample string 6</ContactEmail>
<ContactName>sample string 5</ContactName>
<Id>be47dd9a-feae-4d23-ba10-b08fff12a105</Id>
<LicensePlate>sample string 2</LicensePlate>
<ScanDateTime>2025-12-21T13:03:07.4880032+00:00</ScanDateTime>
<Season>Summer</Season>
</TireScanHeadResponse>
</ArrayOfTireScanHeadResponse>