Get Pending Configurations

get

/rest/v19/pendingConfigurations

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

Request

Supported Media Types
Query Parameters
  • Restrict which fields shall be returned. The value is a comma delimited string and each token is a field name.
  • The requested page size, which limits the number of elements the collection should max return.
  • The offset of the page. By default, offset is 0, which means first page will be returned.
  • Specifies a comma-separated list of pairs to order the response by.
  • Allows to specify one or more filtering criteria. By default, no filtering is applied.
  • Specifies that the total count of records should be included in the response when doing pagination.
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Pending Configuration Collection Definitions
Type: object
Title: Pending Configuration Collection Definitions
Show Source
Nested Schema : items
Type: array
Show Source
Nested 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 all pending configurations for the current user 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

Response Body Sample

{
  "hasMore": false,
  "links": [{
      "rel": "self",
      "href": "http://sitename.oracle.com/rest/v19/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/v19/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/v19/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/v19/pendingConfigurations/3023277456"
        }
      ]
    }
  ]
}
Back to Top