List jobs
list_jobsList video processing jobs newest first, filter by status, and page through results. Scoped to the active project by default; pass 'all' to see every project.
Instructions
List jobs newest first, scoped to a project and returned a page at a time.
Defaults to the active project, so a long-running server shared by several sessions does not bury your work in everyone else's. Pass project='all' to see everything, and use offset with limit to page through a busy queue — 'total' and 'has_more' say whether there is another page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size. | |
| offset | No | How many jobs to skip, for paging. | |
| status | No | Filter to one status. | |
| project | No | Which project to list. Defaults to the active one; pass 'all' to see every project at once. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jobs | Yes | ||
| limit | Yes | ||
| total | Yes | Jobs matching the filter, ignoring this page. | |
| counts | Yes | ||
| offset | Yes | ||
| project | Yes | The scope these results cover; 'all' spans projects. | |
| has_more | Yes |