Index API

List Indices

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"
  ]
}

[EARLY DRAFT RELEASE] Copyright 2020-2025 Telicent Limited. All rights reserved