v1 data

Get job completion percentage

Retrieve the current processing status of an ingestion job.

Use the job_id returned from /ingest to check if processing is complete.

**Request Parameters:**
- job_id (str, required): Unique identifier from /ingest response

**Response:**
- job_id (str): The requested job identifier
- status (str): Current status - "queued", "processing", "completed", "failed", or "cancelled"

**Example:**
```json
{
    "job_id": "123e4567-e89b-12d3-a456-426614174000"
}
```

Returns 200 OK with current status. Poll periodically until status is "completed" or "failed".
Requires JWT authentication.
post/v1/data/job/status

Request body

job_idstring required

Unique identifier for the job

Example request

{
  "job_id": "456e7890-e89b-12d3-a456-426614174001"
}

Response

Successful Response

job_idstring required

The job ID

statusstring required

Current job status: done, partial, processing, not started, error, cancelled

completioninteger

Completion percentage (0-100)

Example response

{
  "completion": 45,
  "job_id": "456e7890-e89b-12d3-a456-426614174001",
  "status": "processing"
}

Changes

Changed in 2 of the 29 revisions of this API.13

    • added the optional property completion to the response with the 200 status

      response-optional-property-added

    • added the optional property details to the response with the 400 status

      response-optional-property-added

    • added the optional property details to the response with the 401 status

      response-optional-property-added

    • added the optional property details to the response with the 404 status

      response-optional-property-added

    • added the optional property details to the response with the 500 status

      response-optional-property-added

    • added the optional property request_id to the response with the 400 status

      response-optional-property-added

    • added the optional property request_id to the response with the 401 status

      response-optional-property-added

    • added the optional property request_id to the response with the 404 status

      response-optional-property-added

    • added the optional property request_id to the response with the 500 status

      response-optional-property-added

    • added the required property error_code to the response with the 400 status

      response-required-property-added

    • added the required property error_code to the response with the 401 status

      response-required-property-added

    • added the required property error_code to the response with the 404 status

      response-required-property-added

    • added the required property error_code to the response with the 500 status

      response-required-property-added

    This revision also has 7 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog