Applicable plans:


The free planThe complete planOn-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:

  1. Through the Waldo portal, under the Metrics tab.
  2. 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.


  1. Save the powershell script to your computer and edit the script.

  2. Set the apiKey with your API key.

    For example:
    $apiKey = 'CA+tyusuVrHIrqXvupPdDreydQP81//ZZAu6zcJ4h/g='

  3. 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.

  4. Replace timezone by your timezone, using IANA format.

    For example:
    $timezone = 'Europe/Paris'
    You can find your timezone with this website.

  5. 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')


  6. 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.


  7. You can now run your powershell script.