Create an Keyword Redirect Entry.

post

/gsadmin/v1/{appName}/redirects/{redirectGroup}/{redirectEntry}

Create a new keyword redirect entry in the specified redirect group

Request

Supported Media Types
Path Parameters
Body ()
The keyword redirect entry to be created in the redirect group.
Root Schema : RedirectEntry
Type: object
Represents a Redirect Entry configuration.
Show Source
Nested Schema : searchTermExpansions
Type: object
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.
Show Source
Nested Schema : siteIds
Type: array
Specifies the list of site IDs that this redirect entry belongs to
Show Source
Security
Back to Top

Response

Supported Media Types

201 Response

Keyword Redirect Entry successfully created.
Body ()
Root Schema : Response
Type: object
Show Source
Back to Top

Examples

The following example shows how to configure a redirect-entry object named id4 in the default redirect group using cURL:

curl -X POST -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 configuration of a redirect-entry object that can be input to an endpoint in either ZIP or JSON format:

{
  "ecr:type": "redirect-entry",
  "searchTerms": "fujifilm",
  "matchmode": "MATCHEXACT",
  "url": "/browse/Fujifilm/_/N-1z141wh"
}
Back to Top