Get a Pending Configuration

get

/rest/v19/pendingConfigurations/{id}

Use this endpoint to retrieve the specified pending configuration.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Pending Configuration Instance Definitions
Type: object
Title: Pending Configuration Instance Definitions
Show Source
Back to Top

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"
    }
  ]
}
Back to Top