Update a Part Price

put

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

Use this endpoint to update a price for a CPQ part.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : Part Prices Setup Create Request Definitions
Type: object
Title: Part Prices Setup Create Request Definitions
Show Source
Nested Schema : Price
Type: object
Title: Price
Price of the part.
Show Source
Back to Top

Response

Supported Media Types

Default Response

Back to Top

Examples

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

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

Request Body

{
  "price": {
    "value": 118.0,
    "currency": "EUR"
  }
}
Back to Top