GET /api/v1/cloud/deployment_runs
Retrieves deployment runs across all deployments for the current user. This top-level endpoint is useful for monitoring all execution activity without filtering by a specific deployment.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer $QODER_PAT |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Maximum number of records to return. Default 20, range 1-100. Values above 100 return 400 invalid_request_error. |
page | string | No | Cursor value returned by next_page. Do not combine with before_id or after_id. |
after_id | string | No | Cursor pagination: return records after this ID |
before_id | string | No | Cursor pagination: return records before this ID |
deployment_id | string | No | Filter by Deployment ID |
trigger_type | string | No | Filter by trigger type: manual, schedule |
has_error | boolean | No | Filter runs with/without public error objects |
created_at[gt] | string | No | Only return runs created after this timestamp (ISO 8601) |
created_at[gte] | string | No | Only return runs created at or after this timestamp (ISO 8601) |
created_at[lt] | string | No | Only return runs created before this timestamp (ISO 8601) |
created_at[lte] | string | No | Only return runs created at or before this timestamp (ISO 8601) |
Example request
Example response
HTTP 200 OKResponse fields
| Field | Type | Description |
|---|---|---|
data | array | List of Deployment Run objects |
first_id | string | ID of the first record on the current page |
last_id | string | ID of the last record on the current page |
has_more | boolean | Whether more records are available |
next_page | string or null | Cursor value for the next page (null when no more) |
next_page as the page parameter to retrieve the next page.
See Run a deployment for Deployment Run field descriptions.
Errors
| HTTP | Type | Trigger |
|---|---|---|
| 401 | authentication_error | PAT invalid or expired |
Related
Get a deployment run (global)
Fetch run details directly by run ID.
List deployment runs
Query run history scoped to a single deployment.
List deployments
View all deployments under the account.
Manually trigger a deployment
Kick off a deployment run immediately.