Update an application

Update an existing application. The only fields that can be updated by the user are: name, description, oauthRedirectURI and public. If other read-only fields of the application are passed during the update operation, they are simply ignored by the server.

Sample method invocation

  curl -X PUT \
    -u userid:pw \
    -H 'Content-Type: application/json' \
    -d '        
        {
           "name": string,
           "appImageURL": string,
           "description": string,
           "oauthRedirectURI": string,
           "public": boolean
        }
        
       ' \
    https://<mgmt-cluster-ip>/v1/portal/orgs/{orgID}/apps/{appID}