List batch jobs
/lang2fhir/batchReturns a page of the instance's batch jobs, newest first, without per-job counts. Jobs are shared across the instance's credentials, so this lists every batch job on the instance, not just the calling credential's.
Query parameters
cursorstringoptionalOpaque pagination cursor from a previous page's next_cursor.
limitintegeroptionaldefault 20Page size. Defaults to 20; values above 100 are clamped to 100.
A page of batch jobs
Response fields
jobsobject[]requiredjob_idstringrequiredServer-assigned job identifier.
request_idstringoptionalThe idempotency token supplied at create, if any.
statusstringrequiredJob status. completed means every item has finished — some may have
failed, so check counts for the split. failed is a whole-job
failure (the job could not run at all), distinct from individual item
failures, which never fail the job.
pendingprocessingcompletedfailedfinalizedbooleanrequiredWhether the job's item set has been sealed.
total_itemsintegerrequiredThe sealed item count. It is 0 until the job is finalized, so an upload response always reports 0; poll the job after finalize for the real count.
errorobjectoptionalA whole-job failure. Present only on a failed job.
created_atstring (date-time)requiredupdated_atstring (date-time)requiredcompleted_atstring (date-time)optionalWhen the job finished. Absent until then.
expires_atstring (date-time)requiredWhen the job and its stored inputs and results are deleted. Set 7
days out, with the clock restarting when the job reaches completed
or failed. At expiry the job's request_id is freed for reuse.
next_cursorstringoptionalCursor for the next page, when has_more is true.
has_morebooleanrequiredWhether more jobs remain beyond this page.