Documentation Index
Fetch the complete documentation index at: https://docs.moorcheh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Returns status for an upload started by upload_namespace_documents or upload_namespace_vectors. Poll untilstatus is "completed". Check successful and failed for per-item results.
Method
upload_namespace_documents_job_status(namespace_name, job_id) — same behavior.
API
GET /namespaces/{namespace_name}/upload-jobs/{job_id} — see Upload job status
Parameters
Namespace the upload job belongs to. Must match the namespace used when the job was started.
Job id returned from an upload call.
Example
Returns
Id of the upload job.
Namespace items are being uploaded to.
Job state:
"running" or "completed".Total number of documents or vectors in the upload batch.
Number of items processed so far (embedded or validated).
Number of items successfully persisted.
Number of items that failed during processing. Check
last_error for the most recent failure reason.Most recent per-item error message during processing;
null if none.ISO 8601 UTC timestamp when the job started.
ISO 8601 UTC timestamp of the last job update.
ISO 8601 UTC timestamp when the job finished;
null while status is "running".Error description when the job cannot be found.
Example return value (completed)
Errors
Non-2xx responses raiseMoorchehApiError.
| Status | Cause |
|---|---|
| 404 | Upload job not found, or job id does not belong to this namespace |