Start Over
post
                    /rest/v19/config{prodFamVarName}.{prodLineVarName}.{modelVarName}/actions/_startOver
This action is used when a user wants to start the configuration again from scratch. The destination URL returned in the response could be a home page or specified destination.
                
                Request
Supported Media Types
                - application/json
Path Parameters
                - 
                    modelVarName(required): string
                    
                    The variable name of a Model
- 
                    prodFamVarName(required): string
                    
                    The variable name of a Product Family
- 
                    prodLineVarName(required): string
                    
                    The variable name of a Product Line
Root Schema : startOverRequest
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            cacheInstanceId(required): 
            string
            Title:Cache Instance IdThe unique identifier for the entry of configuration data stored in the cache. This is obtained from actions that launch configuration and passed along in subsequent actions.
Response
Supported Media Types
                - application/json
Default Response
Root Schema : startOverResponse
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            destinationUrl: 
            string
            Title:Destination URLDestination url.
Examples
The following example shows how to start the configuration from scratch by submitting a POST request to the REST resource using cURL.
curl -X POST -H "Authorization: Bearer <token>" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/configvision.servers.ultraPowerSolutionPackage/actions/_startOver
Request Body Sample
{
	"cacheInstanceId": "agu0yDbIYDBmKcRuVqkyw6K8ALcd5bax95BFBTqFQITChTpjEqeZyQUknHMuLDfW"
}
                  
                  Response Body Sample
The following example shows the contents of the response body in JSON format:
{
	"destinationUrl": "https://sitename.oracle.com/commerce/display_company_profile.jsp"
}