List BoM for a Product

post/productmanager.bomtree/{sku}

Retrieves all Bill of Materials for the specified product.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
sku
required
string

The sku of the product you want to retrieve the Bill of Materials for.

Responses
200

OK

Response Schema: application/json
object
node
string non-empty
csrfToken
string non-empty
Array of objects non-empty unique
Array (non-empty)
id
number
parentId
number
level
number
label
string non-empty
quantity
number
totalQuantity
number
category
any
type
string non-empty
isNode
boolean
additionalInfo1
any
additionalInfo2
any
additionalInfo3
any
additionalInfo4
any
component
boolean
status
number
Request samples
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "csrfToken": "string",
    • "data": [
      • {
        • "id": 0,
        • "parentId": 0,
        • "level": 0,
        • "label": "string",
        • "quantity": 0,
        • "totalQuantity": 0,
        • "category": null,
        • "type": "string",
        • "isNode": true,
        • "additionalInfo1": null,
        • "additionalInfo2": null,
        • "additionalInfo3": null,
        • "additionalInfo4": null,
        • "component": true
        }
      ],
    • "status": 0
    }
}