Update a BOM Item Definition

put

/rest/v16/bomItemSetups/{bomItemVarName}

Use this endpoint to update the specified BOM item definition.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : BOM Item Setup Create Request Definitions
Type: object
Title: BOM Item Setup Create Request Definitions
Show Source
Back to Top

Response

Supported Media Types

Default Response

Back to Top

Examples

The following example shows how to update a BOM item definition 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 "Accept: application/json"
https://sitename.oracle.com/rest/v16/bomItemSetups/CPU-920-28

Request Body Sample

{
  "isManufacturingItem": true,
  "parentVariableName": "varioTablet",
  "sequenceNumber": 1111,
  "isIncludedInBasePrice": false,
  "itemType": "Standard Item",
  "variableName": "varioTablet-cpu3",
  "modelPath": null,
  "bomPrice": null,
  "isSalesItem": true,
  "isOptional": false,
  "label": "Quad Core 2.80 GHz",
  "defaultQuantity": 1.0,
  "isRootModel": false,
  "effectiveTo": null,
  "rootVariableName": "varioTablet",
  "partNumber": "CPU-920-28",
  "itemIdentifier": "1111",
  "effectiveFrom": null
}

Response Body Status

204 No Content

Back to Top