Get Related Configurators

post

/rest/v19/bomItemSetups/{bomItemVarName}/actions/getRelatedConfigurators

Use this endpoint to retrieve all product hierarchies having BOM Mapping rules mapped to the root BOM item.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : BOM Item Setup Get Related Configurators Request Definitions
Type: object
Title: BOM Item Setup Get Related Configurators Request Definitions
Show Source
  • Title: Limit
    Maximum number of getRelatedConfigurators items returned.
  • Title: Offset
    Specifies the index of the first item to be returned
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : BOM Item Setup Get Related Configurators Response Definitions
Type: object
Title: BOM Item Setup Get Related Configurators Response Definitions
Show Source
Nested Schema : Related Configurator Product Hierarchy Items
Type: object
Title: Related Configurator Product Hierarchy Items
List of Product Hierarchy items having BOM mapping rules mapped to the Root BOM Item
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Related Configurator Product Hierarchies
Type: object
Title: Related Configurator Product Hierarchies
Product Hierarchy model having BOM mapping rules mapped to the Root BOM Item.
Show Source
Back to Top

Examples

The following example shows how to retrieve all product hierarchies having BOM Mapping rules mapped to the root BOM item by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X POST -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/bomItemSetups/someModel/actions/getRelatedConfigurators

Response Body Sample

{
  "hasMore": false,
  "relatedConfigurators": {
    "items": [{
        "productFamily": "Generator 2",
        "productLine": "Single 2",
        "model": "Model Single 2",
        "status": "In Progress",
        "companyId": 4118171,
        "statusMessage": "This configuration is in progress.",
        "progressPercentage": 75
      }, {
        "productFamily": "Generator 2",
        "productLine": "Single 2",
        "model": "Model Single 2",
        "status": "Failed",
        "companyId": 4118171,
        "dateAdded": 1711338972000,
        "statusMessage": "The auto generation failed and changes have been reverted. Please try again.",
        "progressPercentage": 0
      }
    ],
    "offset": 0,
    "limit": 5,
    "count": 1,
    "totalResults": 1,
    "hasMore": false
  }
}
Back to Top