getIngestJobRunStatus
Track the progress and status of a data ingestion job using namespace, tenant, and job run IDs for efficient monitoring and management.
Instructions
Checks the status of a previously submitted ingestion job.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ingestJobRunId | Yes | ||
namespaceId | No | ||
tenantId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ingestJobRunId": {
"type": "string"
},
"namespaceId": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"required": [
"ingestJobRunId"
],
"type": "object"
}