Get Recommended Parts

post

/rest/v16/config{prodFamVarName}.{prodLineVarName}.{modelVarName}/_recmdParts/actions/getRecmdParts

This action retrieves the recommended parts of the configuration. This action does not run recommended items rules.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : getRecmdPartsRequest
Type: object
Show Source
  • Title: Cache Instance Id
    The unique identifier for the entry of configuration data stored in the cache. This is obtained from actions that launch configuration and passed along in subsequent actions.
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : getRecmdPartsResponse
Type: object
Show Source
  • Title: Cache Instance Id
    The unique identifier for the entry of configuration data stored in the cache. This is obtained from actions that launch configuration and passed along in subsequent actions.
  • items
Nested Schema : items
Type: array
Show Source
Nested Schema : part
Type: object
Show Source
Nested Schema : Price
Type: object
Title: Price
Price
Show Source
Nested Schema : Price Period
Type: object
Title: Price Period
Show Source
Nested Schema : Price Type
Type: object
Title: Price Type
Show Source
Back to Top

Examples

The following example shows how to retrieve the recommended parts of a configuration by submitting a POST request to the REST resource using cURL.

curl -X POST -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/configvarioTablets.tablets.customTablet/_recmdParts/actions/getRecmdParts

Request Body Sample

{
  "cacheInstanceId": "gsg21bMZ5kpGUWxDIZeGWQCLKbaad33Un1X8huVuDm0K3gAKMeXPbzeQcFsFBAzJ"
}
         

Response Body Sample

The following example shows the contents of the response body in JSON format:

{
  "cacheInstanceId": "gsg21bMZ5kpGUWxDIZeGWQCLKbaad33Un1X8huVuDm0K3gAKMeXPbzeQcFsFBAzJ",
  "items": [{
      "id": "part~BATT-0380M-5200~battery5200mAH",
      "selected": "true",
      "leadTime": -1,
      "comment": "System recommended item",
      "price": {
        "value": "40.00",
        "currency": "USD"
      },
      "partNumber": "BATT-0380M-5200",
      "description": "Battery 3.8V / 5200mAh",
      "units": "",
      "directBuy": "Direct Buy",
      "quantity": 1,
      "_part_custom_field8": {
        "value": "One Time",
        "displayValue": "One Time"
      },
      "_part_custom_field5": 20,
      "partDisplayNumber": "Battery 3.8V / 5200mAh",
      "companyAssociations": ""
    }
  ]
}
Back to Top