List Runs
list_runsList and filter Coalesce runs by type, status, or environment. Supports pagination and optional full run details.
Instructions
List Coalesce runs with optional filters for type, status, and environment.
Args:
runType ('deploy'|'refresh', optional): Filter by type
runStatus ('completed'|'failed'|'canceled'|'running'|'waitingToRun', optional): Filter by status
environmentID (string, optional): Filter by environment
detail (boolean, optional): Include full run details
limit, startingFrom, orderBy, orderByDirection: Pagination controls
Returns: { data: Run[], next?: string, total?: number }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (max 500) | |
| detail | No | Include full run details in response | |
| orderBy | No | Field to sort by (required with startingFrom) | |
| runType | No | Filter by run type | |
| runStatus | No | Filter by run status | |
| startingFrom | No | Cursor from previous response's next field | |
| environmentID | No | Filter by environment ID | |
| orderByDirection | No | Sort direction |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | ||
| next | No | ||
| total | No |