Beta
Batch Processing
List Batch Jobs
List batch processing jobs with optional filtering.
Filter by directory_id, job_type, or status. Results are paginated with configurable limit and offset.
get/api/v1/beta/batch-processing
Query parameters
directory_idstring nullable
Filter by directory ID
Filter by directory ID
job_type'parse' | 'extract' | 'classify'
Type of batch processing operation.
Filter by job type (PARSE, EXTRACT, CLASSIFY)
status'pending' | 'running' | 'dispatched' | 'completed' | 'failed' | 'cancelled'
Status of a batch processing job.
Filter by job status (PENDING, RUNNING, COMPLETED, FAILED, CANCELLED)
limitinteger
Maximum number of jobs to return
Maximum number of jobs to return
offsetinteger
Number of jobs to skip for pagination
Number of jobs to skip for pagination
project_idstring uuid nullable
organization_idstring uuid nullable
Cookies
sessionstring nullable
Response
Successful Response
Example response
{
"items": [
{
"id": "bjb-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"project_id": "proj-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"directory_id": "dir-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
}
]
}