Index API
List Available Indices
GET /indices
This returns a list of all available search indices.
Note: This endpoint requires authentication which has deliberately not been included in the example below.
Example Call
curl -X GET https://telicent.core.domain/api/search/indices
Responses
Description
- 200 OK: A list of available indices was successfully retrieved.
indices
: The list of available index names.
- 500 Internal Server Error: The server failed to process the request.
- 503 Service Unavailable: No underlying search client available.
Example
{
"indices": [
"knowledge_index",
"alternative_index"
]
}