Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Below table describes currently available report export endpoints and their differences on a higher level and allows you to choose the best option for your requirements.


EndpointMethodRequest FormatAllows multiple reports to be exported in a single requestAllows filtering for reportsDescription
Export reports/report/export/{uuid}GETN/A(error)(error)

Export a single report with its UUID.

Export reports (GET)/report/export?@imei={imei}GETN/A(tick)(error)

Export past month's reports with optional IMEI filtering.

Export reports (POST)/report/exportPOSTapplication/json(tick)(tick)Export reports with the filters/options provided in the request body.

Export Report

The most simple form of exporting a single report, requires the report UUID to be provided as part of the endpoint.

Code Block
titleExample curl request
curl -X "GET" \
  "https://api.eu-west-1.blancco.cloud/v1/report/export/{UUID}" \
  -H "accept: */*" \
  -H "X-BLANCCO-API-KEY: {API_KEY}"


Export Report (GET)


Export Report (POST)

...