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:
object
Title:
Show Source
Pending Configuration Instance Definitions
-
id:
integer
Title:
Id
Primary Key of the Pending Configuration resource -
modelHierarchy:
string
Title:
Model Hierarchy
Hierarchy path of the configured model -
modelLabel:
string
Title:
Model Label
Label of the configured model -
savedDate:
string
Title:
Saved Date
Date 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" } ] }