Get a Pending Configuration
get
                    /rest/v19/pendingConfigurations/{id}
Use this endpoint to retrieve the specified pending configuration.
                
                Request
Supported Media Types
                - application/json
Path Parameters
                - 
                    id(required): integer
                    
                    Primary Key of the Pending Configuration resource
Response
Supported Media Types
                - application/json
Default Response
Root Schema : Pending Configuration Instance Definitions
    
      Type: 
      
    
    
    
    objectTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        Pending Configuration Instance Definitions- 
            id: 
            integer
            Title:IdPrimary Key of the Pending Configuration resource
- 
            modelHierarchy: 
            string
            Title:Model HierarchyHierarchy path of the configured model
- 
            modelLabel: 
            string
            Title:Model LabelLabel of the configured model
- 
            savedDate: 
            string
            Title:Saved DateDate of configuration
Examples
The following example shows how to retrieve the specified pending configuration by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/pendingConfigurations/3023277453
Response Body Sample
{
  "modelHierarchy": "Testbed > Recommended Items > Quick Items (Performance)",
  "id": 3023277453,
  "modelLabel": "Quick Items (Performance)",
  "savedDate": "2024-08-16 08:25:07",
  "links": [{
      "rel": "self",
      "href": "http://sitename.oracle.com/rest/v19/pendingConfigurations/3023277453"
    }
  ]
}