Pending Configurations REST API

Overview

This REST API provide web service support to pending configurations.

 

Administration

ClosedGet Pending Configurations

Get Pending Configurations GET Method
Description

Use this endpoint to retrieve all pending configurations for the current user.

URI Endpoint

/rest/v18/pendingConfigurations

Endpoint Query Parameters

This endpoint supports the following optional parameters: fields, limit, offset, orderby, q, and totalResults.
Refer to Manage Collections for additional information.

HTTP Method(s)

GET

Request Body Parameters

None

Response Body Parameters

An items array of pending configurations.

id

ID of SystemDraft record. Primary key. This is the "draftId" value that is required by the resumeConfig endpoint.

modelHierarchy

Label string of the Model that this SystemDraft record was built from.

modelLabel

Label string of the Model that this SystemDraft record was built from.

savedDate

Last Modified Date of the SystemDraft record.

ClosedURI Endpoint Sample

https://sitename.oracle.com/rest/v18/pendingConfigurations


ClosedResponse Body Sample

{ "hasMore": false, "links": [{ "rel": "self", "href": "http://sitename.oracle.com/rest/v18/pendingConfigurations" } ], "items": [{ "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/v18/pendingConfigurations/3023277453" } ] }, { "modelHierarchy": "Testbed > ABO (Asset Based Ordering) > Basic Asset", "id": 3023276599, "modelLabel": "Basic Asset", "savedDate": "2024-08-15 12:07:19", "links": [{ "rel": "self", "href": "http://sitename.oracle.com/rest/v18/pendingConfigurations/3023276599" } ] }, { "modelHierarchy": "Testbed > Recommended Items > Standard", "id": 3023277456, "modelLabel": "Standard", "savedDate": "2024-08-16 08:28:18", "links": [{ "rel": "self", "href": "http://sitename.oracle.com/rest/v18/pendingConfigurations/3023277456" } ] } ] }


ClosedGet a Pending Configuration

Get a Pending Configuration GET Method
Description

Use this endpoint to retrieve the specified pending configuration.

URI Endpoint

/rest/v18/pendingConfigurations

Endpoint Parameters

id

Primary Key of the Pending Configuration resource

HTTP Method(s)

GET

Request Body Parameters

None

Response Body Parameters

id

ID of SystemDraft record. Primary key. This is the "draftId" value that is required by the resumeConfig endpoint.

modelHierarchy

Label string of the Model that this SystemDraft record was built from.

modelLabel

Label string of the Model that this SystemDraft record was built from.

savedDate

Last Modified Date of the SystemDraft record.

ClosedURI Endpoint Sample

https://sitename.oracle.com/rest/v18/pendingConfigurations/3023277453


ClosedResponse 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/v18/pendingConfigurations/3023277453" } ] }


 

Related Topics

Related Topics Link IconSee Also