Partial update a search interface folder

patch

/gsadmin/v1/{appName}/searchInterfaces

Partial updates a collection of search interfaces in the existing search interface folder.

Request

Supported Media Types
Path Parameters
Body ()
The request body represents the updated search interface folder.
Root Schema : SearchInterfaceFolder
Type: object
Represents the search interface folder in the ECR. Child nodes should represent search interfaces that conform to SearchInterface JSON schema.
Show Source
Security
Back to Top

Response

Supported Media Types

202 Response

Search interface folder successfully updated.
Body ()
Root Schema : Response
Type: object
Show Source
Back to Top

Examples

Request Body Example

The following shows a sample request body to partially update the search interface folder.

{
  "ecr:type": "search-interface-folder",
  "TypeAhead": {
    "ecr:type": "search-interface",
    "crossFieldMatch": "always",
    "fields": [
      {
        "snippetSize": 35,
        "attribute": "product.short_desc"
      }
    ]
  }
}            
Back to Top