Get Indexing
This method allows you to get information on an indexing using its ID.
The returned information includes the status (if the indexing is queued, if it is actively running, or if it has completed) and other metadata.
knowledge_base_id
index_id
indexing_id
Successful Response
{
"id": "string",
"created_at": 0,
"knowledge_base_id": "string",
"index_id": "string",
"completed_at": 0
}
ID of the indexing.
State of the indexing.
Unix timestamp (in seconds) when the indexing was created.
The ID of the knowledge base that is being indexed.
The ID of the index that is being indexed.
Unix timestamp (in seconds) when the indexing completed.
Invalid knowledge base, index or indexing ID.
Validation Error
"HTTPValidationError Object"
detail
curl -H 'Authorization: <value>' https://{api_host}/api/v1/control/knowledge-bases/{knowledge_base_id}/indexes/{index_id}/indexings/{indexing_id}