Skip to main content
GET
/
api
/
projects
/
{project_id}
/
reports
/
latest
Get Latest Report
curl --request GET \
  --url http://localhost:8080/api/projects/{project_id}/reports/latest \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "project_id": "<string>",
  "started_at": "<string>",
  "completed_at": "<string>",
  "duration_seconds": 123,
  "actions": [
    {}
  ],
  "summary": "<string>",
  "status": "<string>",
  "error_message": "<string>",
  "created_at": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Response

Successful Response

id
string
required
project_id
string
required
started_at
string
required
completed_at
string | null
required
duration_seconds
number | null
required
actions
Actions · object[]
required
summary
string
required
status
string
required
error_message
string | null
required
created_at
string
required