Skip to content
Management API Reference

Get the status of an action run

get/v1/projects/{ref}/actions/{run_id}

Returns the current status of the specified action run.

OAuth scopes

  • environment:read

Path parameters

  • ref
    Required
    string

    Project ref

  • run_id
    Required
    string

    Action Run ID

Response codes

  • 200
  • 401
  • 403
  • 429
  • 500

Response (200)

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