Skip to main content
GET
/
deployments
/
runs
/
{runId}
Get deployment run details
curl --request GET \
  --url https://your-domain.com/api/client/v1/deployments/runs/{runId} \
  --header 'Authorization: Bearer <token>'
{
  "run": {
    "id": "<string>",
    "status": "<string>",
    "configuration_id": "<string>",
    "resource_count": 123,
    "created_at": 123,
    "stage": "<string>",
    "configuration_version_id": "<string>",
    "configuration_version_number": 123,
    "queue_position": 123,
    "summary": {},
    "started_at": 123,
    "completed_at": 123,
    "error": "<string>",
    "failure_class": "<string>",
    "spec_hash": "<string>",
    "checkpoint": {}
  },
  "resources": [
    {}
  ],
  "events": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

runId
string
required

Deployment run ID.

Response

Run details

run
object
resources
object[]
events
object[]