...
Endpoint | Method | Request Format | Allows exporting reports for multiple devices in a single request | Allows filtering for reports | Description | |
---|---|---|---|---|---|---|
Export reports | /report/export/{uuid} | GET | N/A | ![]() | ![]() | Export a single report with its UUID. |
Export reports (GET) | /report/export?@imei={imei} | GET | N/A | ![]() | ![]() | Export past month's reports with optional IMEI filtering. |
Export reports (POST) | /report/export | POST | application/json | ![]() | ![]() | Export reports with more advanced filters/options provided in the request body. |
Export
...
Reports
The most simple form of exporting an individual report, requires the report UUID to be provided as part of the endpoint.
...
Code Block | ||
---|---|---|
| ||
curl -X "GET" \ "https://api.eu-west-1.blancco.cloud/v1/report/export/{UUID}?format=PDF" \ -H "accept: */*" \ -H "X-BLANCCO-API-KEY: {API_KEY}" |
Export
...
Reports (GET)
Export past month's reports with optional IMEI filtering. If the report is not created during the past month it will not be included in the results.
...
Code Block | ||
---|---|---|
| ||
curl -X "GET" \ "https://api.eu-west-1.blancco.cloud/v1/report/export?@imei={IMEI}" \ -H "accept: */*" \ -H "X-BLANCCO-API-KEY: {API_KEY}" |
Export
...
Reports (POST)
Export reports with the options provided in the request body. Allows user to define more defined search criteria and only return matching reports.
...