list_jobs
List and filter UiPath Orchestrator jobs within a single folder, returning key details such as state, start/end times, and errors. Use when you need a targeted job overview for a specific folder.
Instructions
List and filter jobs within a single folder.
Use this when the user asks about jobs in a specific, known folder. Use get_jobs_across_folders instead when querying multiple folders or the entire tenant.
Returns a trimmed set of fields per job: Id, ReleaseName, State, StartTime, EndTime, Info, JobError, HostMachineName, Source, and _folder.
Args: folder_name: The display name of the folder. batch_size: Number of jobs to return (default 50). skip: Number of jobs to skip for pagination (default 0). state: Filter by job state — 'Faulted', 'Successful', 'Pending', 'Running', 'Stopped', 'Stopping'. job_priority: Filter by priority — 'Low', 'Normal', or 'High'. start_time: Filter jobs that started at or after this ISO 8601 datetime string. end_time: Filter jobs that ended at or before this ISO 8601 datetime string. release_name: Filter jobs by release (process) name. source: Filter by how the job was triggered — 'Manual', 'Schedule', 'Agent', 'Queue'. most_recent_first: If True, return most recently started jobs first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | ||
| state | No | ||
| source | No | ||
| end_time | No | ||
| batch_size | No | ||
| start_time | No | ||
| folder_name | Yes | ||
| job_priority | No | ||
| release_name | No | ||
| most_recent_first | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |