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 documents or Upload vectors.
Path parameters
Namespace the upload job belongs to. Must match the namespace used when the job was started.
Job id returned from the upload response.
curl "http://localhost:8080/namespaces/my-documents/upload-jobs/job-a0e3d54b9d0d4616949474697308a39c"
Response fields
Namespace items are being uploaded to.
Job state on success: "running" or "completed". On lookup errors: "failure".
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.
{
"job_id": "job-a0e3d54b9d0d4616949474697308a39c",
"namespace_name": "my-documents",
"status": "running",
"total": 1,
"processed": 0,
"successful": 0,
"failed": 0,
"last_error": null,
"started_at": "2026-05-21T12:00:00.000Z",
"updated_at": "2026-05-21T12:00:00.000Z",
"finished_at": null
}