Get a BOM Item Definition

get

/rest/v19/bomItemSetups/{bomItemVarName}

Use this endpoint to retrieve the specified BOM item definition.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

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

Examples

The following example shows how to retrieve a BOM item definition by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/bomItemSetups/VEHICLE

Response Body Sample

{
  "isManufacturingItem": true,
  "parentVariableName": null,
  "sequenceNumber": 0,
  "isIncludedInBasePrice": false,
  "itemType": "Standard Item",
  "variableName": "VEHICLE",
  "modelPath": null,
  "bomPrice": 0.0,
  "isSalesItem": true,
  "isOptional": false,
  "label": "Consumer Vehicle",
  "rootBomItemPartNumber": "VEHICLE",
  "defaultQuantity": 1.0,
  "isRootModel": true,
  "effectiveTo": null,
  "rootBomItemLabel": "Consumer Vehicle",
  "rootVariableName": "VEHICLE",
  "partNumber": "VEHICLE",
  "itemIdentifier": "0",
  "effectiveFrom": null,
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/bomItemSetups/VEHICLE"
    }, {
      "kind": "",
      "rel": "child",
      "name": "bomItemMappings",
      "href": "https://sitename.oracle.com/rest/v19/bomItemSetups/VEHICLE/bomItemMappings"
    }, {
      "kind": "",
      "rel": "child",
      "name": "children",
      "href": "https://sitename.oracle.com/rest/v19/bomItemSetups/VEHICLE/children"
    }
  ]
}
Back to Top