Get a Part Price

get

/rest/v16/partSetups/{id}/prices/{priceId}

Use this endpoint to retrieve the specified price for a CPQ part.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Part Price Setup Children Instance Definitions
Type: object
Title: Part Price Setup Children Instance Definitions
Show Source
Nested Schema : Price
Type: object
Title: Price
Price of the part.
Show Source
Back to Top

Examples

The following example shows how to retrieve the specified price for a CPQ part by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X GET - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
http://sitename.oracle.com/rest/v16/partSetups/38644116/prices/38852300

Response Body

{
  "price": {
    "value": 11800.0,
    "currency": "EUR"
  },
  "dateModified": "2023-03-07T18:21:22.000Z",
  "id": 38852300,
  "dateAdded": "2023-03-07T18:21:22.000Z",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/partSetups/38644116/prices/38852300"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/partSetups/38644116"
    }
  ]
}
Back to Top