List of all report runs or with filters
GET/reportruns/
List of all report runs or with filters
Request
Query Parameters
You can find your API key in the Import.io dashboard under User Settings
Number of items to return per page
Page number to return (default is 1)
Field name to sort by.
To sort by created time, use _sort=meta_created_at
.
Possible values: [ASC
, DESC
]
Sort order.
Default is DESC
.
Responses
- 200
- 401
List of report runs retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Unique identifier for the report run.
_meta
object
[internal] The metadata of the object
The timestamp of the last change to the object
The timestamp of the object's creation
The timestamp of the last patch to the object
The identifier of the object
The identifier of the last editor of the object
The identifier of the owner of the object
The identifier of the creator of the object
The identifier of the organization the object belongs to
The flag indicating if the object is deleted
The type of report run.
The name of report run.
Flag to check if report is published.
The extractor that this report is associated with.
The configuration of the report associated with this report run.
The report associated with this report run.
Current status of the report run.
inputs
object
The inputs for the report run. May include details such as extractor ID and comparison IDs for diff reports.
The inputs for the report run. May include details such as extractor ID and comparison IDs for diff reports.
[internal] CSV containing the results of the report.
[internal] JSON containing the results of the report.
[internal] Log file containing error and warnings from reports.
[internal] PDF containing the results of the report, generated to send as email attachments.
[internal] xlsx containing the results of the report.
summary
object
Summary of the report run.
Summary of the report run.
Error message for a failed report.
Flag to suppress display of report run.
[
{
"guid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"_meta": {
"timestamp": 0,
"creationTimestamp": 0,
"patchTimestamp": 0,
"objectGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"lastEditorGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"ownerGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"creatorGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"orgGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"deleted": true
},
"type": "string",
"name": "string",
"extractorId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"configId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"reportId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "string",
"inputs": {},
"csv": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"json": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"log": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"pdf": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"xlsx": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"summary": {},
"errorMessage": "string",
"archived": true
}
]
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
Internal error code.
A message containing a brief description of the error.
A message containing a brief description of the error.
{
"code": 0,
"message": "string"
}