Skip to main content

Home

List Unity app report runs

Use this API to view a list with detailed information about each run of a specified report name.

GET http://<unity_one_url>/api/reports/<report_name>/runs?sort=desc&count=10&start=0

Response sample

200 OK
content-type: application/json
   [
       {
           "duration": "00:00:05",
           "id": "20221115T092912",
           "status": "success",
           "time": "2022-11-15 09:29:12 UTC"
       },
       {
           "duration": "00:00:11",
           "id": "20221115T090416",
           "status": "failure",
           "time": "2022-11-15 09:04:16 UTC"
       }
   ]

Status codes

Code

Messages

200

Success

404

Not found, if report_name does not exist

500

Internal server error.