Applicable plans:
The free plan | The complete plan | On-demand plan |
---|---|---|
![]() | ![]() | ![]() |
Exporting parking bookings and license plates is useful for connecting the Waldo app to a License Plate Recognition System or a third-party parking booking software.
There are two options for exporting parking bookings and license plates:
- Through the Waldo portal, under the Metrics tab.
- Via the API, as described in this article.
Prerequisites:
Check the prerequisites at https://customer.hellowaldo.app/en/support/solutions/articles/8000121818
Sample script:
You can find attached a powershell sample script.
- Save the powershell script to your computer and edit the script.
- Set the apiKey with your API key.
For example:$apiKey = 'CA+tyusuVrHIrqXvupPdDreydQP81//ZZAu6zcJ4h/g='
- Replace tenantId with your tenant ID.
For example:$tenantId = 'g56d6a56-672c-412a-9a1d-a6979b7c559f'
You can find your Tenant ID in the Waldo admin portal in the API key tab. - Replace timezone by your timezone, using IANA format.
For example:$timezone = 'Europe/Paris'
You can find your timezone with this website. - Replace startDate and endDate with the sart date and end date you want to export the data.
For example:$startDate = (Get-Date).ToString('2024-11-24T08:25:00')
- Replace parkingID with the ID of the parking.
You can find the parking ID in the Waldo admin portal, in the properties of the parking. - You can now run your powershell script.