curl https://api.telzino.com/v1/rag/jobs/33333333-3333-3333-3333-333333333333 \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"data": {
"status": "processing",
"stage": "embedding",
"chunks_processed": 8,
"chunks_total": 24,
"error_text": null,
"source_id": "22222222-2222-2222-2222-222222222222"
}
}
{
"error": "not_found",
"error_description": "Resource not found or access denied"
}
Knowledge Bases
Get RAG Job Status
Poll the status of a knowledge source ingestion job
GET
/
v1
/
rag
/
jobs
/
{jobId}
curl https://api.telzino.com/v1/rag/jobs/33333333-3333-3333-3333-333333333333 \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"data": {
"status": "processing",
"stage": "embedding",
"chunks_processed": 8,
"chunks_total": 24,
"error_text": null,
"source_id": "22222222-2222-2222-2222-222222222222"
}
}
{
"error": "not_found",
"error_description": "Resource not found or access denied"
}
Path Parameters
string
required
Ingestion job ID returned by source creation or re-ingestion.
curl https://api.telzino.com/v1/rag/jobs/33333333-3333-3333-3333-333333333333 \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"data": {
"status": "processing",
"stage": "embedding",
"chunks_processed": 8,
"chunks_total": 24,
"error_text": null,
"source_id": "22222222-2222-2222-2222-222222222222"
}
}
{
"error": "not_found",
"error_description": "Resource not found or access denied"
}
Status Values
| Status | Description |
|---|---|
queued | The job is waiting for a worker. |
processing | The worker is crawling/parsing/chunking/embedding content. |
complete | Ingestion finished successfully. |
failed | Ingestion failed. See error_text. |
⌘I
