Skip to main content
GET
GET /v1/searchIndexes/{id}

Retrieve a Search Index

Get a single search index by its unique ID or fully qualified name.

Get by ID

string
required
UUID of the search index to retrieve.
string
Comma-separated list of fields to include (e.g., owners,tags,followers,votes,extension,domains,sourceHash).
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/searchIndexes/name/{fqn} to retrieve by fully qualified name.
string
required
Fully qualified name of the search index (e.g., elasticsearch_sample.table_search_index).
string
Comma-separated list of fields to include: owners, tags, followers, votes, extension, domains, sourceHash.
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/searchIndexes/{id}

Returns

Returns a search index object with all requested fields populated.

Response

string
Unique identifier for the search index (UUID format).
string
Search index name.
string
Fully qualified name in format service.indexName.
string
Human-readable display name.
string
Description of the search index in Markdown format.
object
Reference to the parent search service.
array
Field definitions for the index schema.
string
Type of search service (e.g., ElasticSearch, OpenSearch).
number
Version number for the entity.
array
List of owners. Only included when fields contains owners.
array
Classification tags. Only included when fields contains tags.
array
Domain assignments. Only included when fields contains domains.

Error Handling