get_jobs
Retrieve and filter classification jobs by status, type, or database to monitor their progress. Use after creating a job to check for completion.
Instructions
Check the status of classification jobs you've run.
Classification jobs run asynchronously and can take 10-30+ minutes to complete depending on your database size. Use this to check if a job has finished after waiting an appropriate amount of time.
Once a job shows status COMPLETED, you can fetch its
detailed report with get_classification_report. If
status is still RUNNING, wait longer before checking
again.
Typical workflow: After creating a job with
create_job, wait 15-30+ minutes, then use this
function to check status. When status is COMPLETED,
use the job_id with get_classification_report to
view results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max jobs to return (default 50, max 50). | |
| contiguous_id | No | Pagination token from a prior `get_jobs` call. | |
| status | No | Filter by job status (e.g. RUNNING, PAUSED, COMPLETED, CANCELLED, FAILED). | |
| job_type | No | Filter by job type (FULL, INCREMENTAL, RECLASSIFICATION). | |
| database_id | No | Restrict to a specific database (numeric ID from `get_databases` / `get_database_id`). | |
| classification_type | No | Optional ALTR classification type code (1-5). | |
| order | No | Sort order by start time, `asc` or `desc` (default `desc`). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||