List Environment Jobs
list_environment_jobsRetrieve jobs currently deployed to a Coalesce environment to view what the scheduler will execute, separate from in-progress workspace edits.
Instructions
List all jobs deployed to a Coalesce environment. Jobs define which nodes run together — pair this with list_environment_nodes when planning a refresh, or with create_workspace_job when authoring new schedules.
Different from listing workspace-side jobs: this returns the jobs currently deployed to the target environment (what the scheduler will execute), not the in-flight workspace edits that may not be deployed yet.
Args:
environmentID (string, required): The environment ID
limit, startingFrom, orderBy, orderByDirection: Pagination
Returns: { data: Job[], next?: string, total?: number }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (max 500) | |
| orderBy | No | Field to sort by (required with startingFrom) | |
| startingFrom | No | Cursor from previous response's next field | |
| environmentID | Yes | The environment ID | |
| orderByDirection | No | Sort direction |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | ||
| next | No | ||
| total | No |