Skip to content
Management API Reference

List all action runs

get/v1/projects/{ref}/actions

Returns a paginated list of action runs of the specified project.

OAuth scopes

  • environment:read

Path parameters

  • ref
    Required
    string

    Project ref

Query parameters

  • offset
    Optional
    number
  • limit
    Optional
    number

Response codes

  • 200
  • 401
  • 403
  • 429
  • 500

Response (200)

1
[
2
{
3
"id": "lorem",
4
"branch_id": "lorem",
5
"run_steps": [
6
{
7
"name": "clone",
8
"status": "CREATED",
9
"created_at": "lorem",
10
"updated_at": "lorem"
11
}
12
],
13
"git_config": null,
14
"workdir": "lorem",
15
"check_run_id": 42,
16
"created_at": "lorem",
17
"updated_at": "lorem"
18
}
19
]