Partial update Keyword Redirects Configuration
patch
                    /gsadmin/v1/{appName}/redirects
Partial updates redirects configuration of the specified application.
                
                Request
Supported Media Types
                - application/json
 
Path Parameters
                - 
                    appName(required): string
                    
                    Specifies the name of your application. For example, "cloud".
 
The request body represents the partially updated redirects configuration.
                
                
                
                Root Schema : Redirects
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectRepresents an application's Keyword Redirects configuration. Child Nodes represent Redirect Group configuration confirming to RedirectGroup JSON schema
    
    
    
    
    Show Source
        - 
            ecr:createDate: 
            string
            
 - 
            ecr:lastModified: 
            string
            
 - 
            ecr:lastModifiedBy: 
            string
            
 - 
            ecr:type: 
            string
            Default Value:
redirects 
Security
                - 
                        basicAuth: basic
                        
                        Type:
basicDescription:Basic username/password authentication. 
Response
Supported Media Types
                - application/json
 
202 Response
Keyword Redirects successfully updated.
                
                
                    Examples
A PATCH endpoint cannot access an object through its parent object. Thus, you cannot use this endpoint to modify the redirect-entry objects or redirect-group objects contained in the redirects object. The following request generates an error:
PATCH /gsadmin/v1/cloud/redirects
Request Body
{
  "ecr:type": "redirects",
  "Default": {
    "ecr:type": "redirect-group",
    "id1": {
      "ecr:type": "redirect-entry",
      "url": "/browse/kodak/_/N-1z141wh"
     }
  },
}