Update an Keyword Redirect Entry.
put
/gsadmin/v1/{appName}/redirects/{redirectGroup}/{redirectEntry}
Updates the given keyword redirect entry configuration in the specified redirect group.
Request
Supported Media Types
- application/json
- application/zip
Path Parameters
- appName
-
Type:
stringRequired:trueSpecifies the name of your application, for example, Discover.- redirectEntry
Type:stringRequired:trueSpecifies the redirect entry name.- redirectGroup
Type:stringRequired:trueSpecifies the redirect group name, for example, Default.Body ParameterThe request body represents the updated keyword redirect entry configuration.Root Schema : RedirectEntryType:objectRepresents a Redirect Entry configuration.- ecr:createDate
-
Type:
string - ecr:lastModified
-
Type:
string - ecr:lastModifiedBy
-
Type:
string - ecr:type
-
Type:
stringDefault Value:redirect-entry - enableStemming
-
Type:
booleanProperty that specifies if the search terms needs to be expanded. - matchmode
-
Type:
stringThe type of match between the specified search terms value and the search term that the user enters. Must be one of the values from MATCHEXACT, MATCHPHRASE, MATCHALL. - searchTermExpansions
-
Type:
objectsearchTermExpansionsAdditional Properties Allowed:Specifies the possible different forms of the configured search terms. This property is used by assembler in rule evaluation process to match user specified search term against any of these forms. - searchTerms
-
Type:
stringConfigured search term against which the user entered search term would be matched. - url
-
Type:
stringThe URL to which users are redirected when the user entered search term matches with configured search terms.
Nested Schema : searchTermExpansionsType:objectSpecifies the possible different forms of the configured search terms. This property is used by assembler in rule evaluation process to match user specified search term against any of these forms.Security- basicAuth
-
Type:
basicDescription:Basic username/password authentication.
Response
Supported Media Types
- application/json
202 Response
Keyword Redirect Entry successfully updated.
Body
Root Schema : Response
Type:
object- message
-
Type:
string - status
-
Type:
integer(int32)
Examples
The following example shows how to replace a redirect-entry object named id4 in the default redirect group using cURL:
curl -X PUT -H "Authorization:Bearer access_token" -H "Content-Type:application/json" -d@pathname/filename.json http://host:port/gsadmin/v1/cloud/redirects/Default/id4
Request Body Example
The following example shows the new configuration of the redirect-entry object named id4:
{
"ecr:type": "redirect-entry",
"searchTerms": "fujifilm",
"matchmode": "MATCHEXACT",
"url": "/browse/Fujifilm/_/N-1z162xy"
}