Last updated 1 year ago
List of parkings
The request has been successful
Report of arrivals
The parking uuid
Report of departures
const response = await fetch('/v1/parkings', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/parkings/{parking}/reports/departures?view=2024-11-21', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/parkings/{parking}/reports/arrivals?view=2024-11-21', { method: 'GET', headers: {}, }); const data = await response.json();