GET api/StorageStatistics
Gets storagestatistics per branch
Request Information
URI Parameters
None.
Body Parameters
None.
Remarks
None.
Example
None.
Response Information
Resource Description
Collection of StorageStatisticResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchId | integer |
Required |
|
| BranchName | string |
Required Max length: 80 |
|
| BranchAddress | string |
Max length: 100 |
|
| BranchTown | string |
Max length: 50 |
|
| Capacity | integer |
Required |
|
| Booked | integer |
Required |
|
| Available | integer |
Required |
|
| Charged | integer |
Required |
|
| ActiveSeasonName |
Winter/Summer |
string |
Required Max length: 50 |
| SeasonChangeDate | date |
Required |
|
| NextSeasonName |
Winter/Summer |
string |
Required Max length: 50 |
Response Formats
application/json, text/json
Sample:
[
{
"BranchId": 1,
"BranchName": "sample string 2",
"BranchAddress": "sample string 3",
"BranchTown": "sample string 4",
"Capacity": 5,
"Booked": 6,
"Available": 7,
"Charged": 8,
"ActiveSeasonName": "sample string 9",
"SeasonChangeDate": "12/21/2025 1:01:53 PM",
"NextSeasonName": "sample string 10"
},
{
"BranchId": 1,
"BranchName": "sample string 2",
"BranchAddress": "sample string 3",
"BranchTown": "sample string 4",
"Capacity": 5,
"Booked": 6,
"Available": 7,
"Charged": 8,
"ActiveSeasonName": "sample string 9",
"SeasonChangeDate": "12/21/2025 1:01:53 PM",
"NextSeasonName": "sample string 10"
}
]
application/xml, text/xml
Sample:
<ArrayOfStorageStatisticResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.TyreHotel">
<StorageStatisticResponse>
<ActiveSeasonName>sample string 9</ActiveSeasonName>
<Available>7</Available>
<Booked>6</Booked>
<BranchAddress>sample string 3</BranchAddress>
<BranchId>1</BranchId>
<BranchName>sample string 2</BranchName>
<BranchTown>sample string 4</BranchTown>
<Capacity>5</Capacity>
<Charged>8</Charged>
<NextSeasonName>sample string 10</NextSeasonName>
<SeasonChangeDate>2025-12-21T13:01:53.026707+00:00</SeasonChangeDate>
</StorageStatisticResponse>
<StorageStatisticResponse>
<ActiveSeasonName>sample string 9</ActiveSeasonName>
<Available>7</Available>
<Booked>6</Booked>
<BranchAddress>sample string 3</BranchAddress>
<BranchId>1</BranchId>
<BranchName>sample string 2</BranchName>
<BranchTown>sample string 4</BranchTown>
<Capacity>5</Capacity>
<Charged>8</Charged>
<NextSeasonName>sample string 10</NextSeasonName>
<SeasonChangeDate>2025-12-21T13:01:53.026707+00:00</SeasonChangeDate>
</StorageStatisticResponse>
</ArrayOfStorageStatisticResponse>