Skip to main content
GET
/
ai
/
v1
/
ingest
/
{runId}
/
status
Get ingestion workflow status
curl --request GET \
  --url https://api.{workspaceId}.clinia.cloud/ai/v1/ingest/{runId}/status
{
  "runId": "<string>",
  "status": "running",
  "currentStep": "<string>",
  "result": {
    "pageCount": 123,
    "atlasIngestion": {
      "success": true,
      "message": "<string>"
    }
  },
  "error": "<string>"
}

Headers

X-User-Id
string

The ID of the user making the request. Used to associate the request with a specific user.

Path Parameters

runId
string
required

Response

Current status

runId
string
required
status
enum<string>
required
Available options:
running,
success,
failed,
suspended,
unknown
currentStep
string
result
object
error
string