Returns filtered list of fleet availability information per day and car category (max 100.000 records).
| Name | Description | Type | Additional information |
|---|---|---|---|
| culture | string |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| CarCategorySIPP |
SIPP code of a car category. |
string |
None. |
| DateFrom |
Date of pickup - end of period. Local date representation in ISO 8601 format. |
date |
None. |
| DateTo |
Date of pickup - end of period. Local date representation in ISO 8601 format. |
date |
None. |
| OfficeId |
Id of the office. Send null for general fleet availability |
integer |
None. |
| StateDateFrom |
State date - start of period. Local date representation in ISO 8601 format. |
date |
None. |
| StateDateTo |
State date - end of period. Local date representation in ISO 8601 format. |
date |
None. |
{
"StateDateFrom": "2026-05-15T11:05:13.1335958+02:00",
"StateDateTo": "2026-05-15T11:05:13.1335958+02:00",
"DateFrom": "2026-05-15T11:05:13.1335958+02:00",
"DateTo": "2026-05-15T11:05:13.1335958+02:00",
"CarCategorySIPP": "sample string 1",
"OfficeId": 1
}
Returns filtered list of fleet availability information per day and car category (max 100.000 records).
Collection of ExExportFleetAvailabilityModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AvailableCount |
Number of available vehicles for a given pickup date. |
integer |
None. |
| BookedByRentCount |
Number of cars booked by car rental |
integer |
None. |
| BookedCount |
Number of booked vehicles for a given pickup date. |
integer |
None. |
| BookedPercentageValue |
Percentage of booked fleet for a given pickup date. |
decimal number |
None. |
| CarCategorySIPP |
SIPP code of a car category. |
string |
None. |
| Date |
Date of pickup. Local date representation in ISO 8601 format. |
date |
None. |
| OfficeId | integer |
None. |
|
| StateDate |
State date. Numbers were generated and valid on this date. Local date representation in ISO 8601 format. |
date |
None. |
| TotalCount |
Total number of vehicles for a given pickup date. |
integer |
None. |
[
{
"StateDate": "2026-05-15T11:05:13.1335958+02:00",
"Date": "2026-05-15T11:05:13.1335958+02:00",
"CarCategorySIPP": "sample string 1",
"AvailableCount": 1,
"TotalCount": 1,
"BookedCount": 1,
"BookedPercentageValue": 1.0,
"BookedByRentCount": 1,
"OfficeId": 1
},
{
"StateDate": "2026-05-15T11:05:13.1335958+02:00",
"Date": "2026-05-15T11:05:13.1335958+02:00",
"CarCategorySIPP": "sample string 1",
"AvailableCount": 1,
"TotalCount": 1,
"BookedCount": 1,
"BookedPercentageValue": 1.0,
"BookedByRentCount": 1,
"OfficeId": 1
}
]