1. goUrban Knowledge Base
  2. Export service - Accessing data

General exports, repeatable exports, and Webhooks

Available Exports

The general exports are:

  • Bookings - all time / last 24 hours
  • Customers - all time / last 24 hours
  • Modules - all time / last 24 hours
  • Rentals - all time / last 24 hours
  • Rental events - last 2 months / last 24 hours
  • Vehicles - all time / last 24 hours
  • Balances - all time / last 24 hours
  • Tasks - all time / last 24 hours
  • Issues - all time / last 24 hours
  • Damages - all time / last 24 hours
  • Vehicle Categories
  • Branches
  • Promotions - last 2 months / last 24 hours
  • List of error codes - last month
  • Invoices - last month / last 3 months / last 6 months

Our team can schedule exports so that you get an email with updated data.

Additionally, it is possible (extra):

  • to request custom exports (EUR 480 setup by export)
  • to connect to your business intelligence solution (custom fee)

Repeatable exports

Our service supports repeatable exports that can be scheduled ahead of time. This means it is possible to schedule an export to run daily, weekly, etc.

Webhooks

The general idea is to enable the asynchronous delivery of a data export via a download URL as soon as the export is finished. For this, a webhook URL is required which will be invoked after the export is done, when set.

In case a webhook should fail to return an HTTP 200 our service repeats the delivery once.

The body of the webhook looks as follows:

{
"id": 1, //exportId
"queryId" : 1,
"queryName" : "select all vehicles",
"exportUrl" : "exportUrl",
"expirationDate" : "2021-05-14T14:28:12Z"
}