...
The above will return the following:
Info |
---|
The executions are shown in descending order, with the latest execution_id appearing at the top of the response body. |
Code Block |
---|
{ "total_count": 2, <-- Number of executions for particular Report "last_page": true, "executions": [ { "id": 1883, "title": "Title/Name of report", <-- Title/Name of report "report_executed_by": "steve.jobs@contoso.com", <-- Who executed the latest run "started_at": "2024-03-15T08:32:29.000Z", <-- date of report execution/regeneration "report_executed_status": "success" }, { "id": 1807, "title": "Title/Name of report", <-- Title/Name of report "report_executed_by": "steve.jobs@contoso.com", <-- Who executed this run "started_at": "2024-03-08T09:57:29.000Z", <-- date of report execution "report_executed_status": "success" } ] } |
Info |
The executions are shown in descending order, with the latest execution_id appearing at the top of the response body. |
...