Skip to main content
GET
/
api
/
projects
/
{project_id}
/
reports
List Reports
curl --request GET \
  --url http://localhost:8080/api/projects/{project_id}/reports \
  --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

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: 0 <= x <= 100000

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