Get a BOM Item Child Definition for a Parent BOM Item

get

/rest/v16/bomItemSetups/{bomItemVarName}/children/{childVarName}

Use this endpoint the specified BOM item child definition for a parent BOM item.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : BOM Item Setup Children Instance Definitions
Type: object
Title: BOM Item Setup Children Instance Definitions
Show Source
Back to Top

Examples

The following example shows how to retrieve the specified BOM item child 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 "Accept: application/json"
https://sitename.oracle.com/rest/v16/bomItemSetups/VEHICLE/children/SUB2

Response Body Sample

{
  "isManufacturingItem": false,
  "parentVariableName": "VEHICLE",
  "sequenceNumber": 2,
  "isIncludedInBasePrice": false,
  "itemType": "Standard Item",
  "variableName": "SUB2",
  "modelPath": null,
  "bomPrice": 0.0,
  "isSalesItem": true,
  "isOptional": false,
  "label": "Sports SUV Subscription",
  "defaultQuantity": 1.0,
  "isRootModel": false,
  "effectiveTo": null,
  "rootVariableName": "VEHICLE",
  "partNumber": "Sports SUV Subscription",
  "itemIdentifier": "2",
  "effectiveFrom": null,
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/bomItemSetups/VEHICLE/children/SUB2"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/bomItemSetups/VEHICLE"
    }
  ]
}
Back to Top