Applicable plans:


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

  1. Through the Waldo portal, under the Metrics tab.
  2. Via the API, as described in this article.


Prerequisites:

  1. Get your IP. You can find your IP with this website. Save your IP v4 and your IP v6.

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

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


  1. Save the csv file to your computer. Edit the file and replace the emails by the ones you want to check-in.

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

  3. Set the apiKey with your API key.

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

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

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

    For example:
    $timezone = 'Europe/Paris'

    You can find your timezone with this website.

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


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


  8. You can now run your powershell script.