Applicable plans:
The free plan | The complete plan | On-demand plan |
---|---|---|
This feature is in beta version.
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:
- Get your IP. You can find your IP with this website. Save your IP v4 and your IP v6.
- Generate your API key with your IP v4 and your IP v6 at https://admin.hellowaldo.app/apikey
Generate an API key for your IP V4 and your IP v6. - Get your tenant ID at https://admin.hellowaldo.app/globalsettings
Sample script:
You can find attached a powershell sample script and a csv sample file.
- Save the csv file to your computer. Edit the file and replace the emails by the ones you want to check-in.
- 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 by 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 by 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 by 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.