QANATIX
API ReferenceInteractive ReferenceIngestion

Get ingestion status

Retrieve the status and details of a specific ingestion by UUID. Scoped to the caller's tenant.

GET
/api/v1/ingestions/{ingestion_id}

Path Parameters

ingestion_id*string
Formatuuid

Header Parameters

x-tenant-id?|
authorization?|

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/ingestions/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
  "content_hash": "string",
  "source_type": "string",
  "source_name": "string",
  "vertical": "string",
  "entity_type": "string",
  "file_name": "string",
  "file_size": 0,
  "record_count": 0,
  "accepted": 0,
  "rejected": 0,
  "status": "string",
  "error_summary": {},
  "created_at": "2019-08-24T14:15:22Z",
  "completed_at": "2019-08-24T14:15:22Z"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}