View search index configuration

get

/gsadmin/v1/{appName}/searchIndexConfig

Returns the search index configuration of the application.

Request

Supported Media Types
  • application/json
Path Parameters
appName
Type: string
Required: true
Specifies the name of your application, for example, Discover.
Security
basicAuth
Type: basic
Description: Basic username/password authentication.

Response

Supported Media Types
  • application/json
  • application/zip
200 Response
The search index config.
Body
Represents an application's search index configuration.
Root Schema : SearchIndexConfig
Type: object
Represents an application's search index configuration.
Nested Schema : locales
Type: array
Specifies the additional locales that can be supported.

Examples

The following example shows how to view a search index configuration by submitting a GET request on the REST resource using cURL:

curl -u <username>:<password> http://localhost:8006/ifcr/gsadmin/v1/{appName}/searchIndexConfig.json

Response Body Example

The following example shows the response returned in JSON format.

{
	"ecr:lastModifiedBy": "admin",
	"ecr:lastModified": "2016-05-24T17:10:24.914z",
	"ecr:createDate": "2016-01-13T08:21:15.372z",
	"ecr:type": "search-index-config",
	"defaultLocale": "en-US",
	"locales": [
		"de"
	]
}