Skip to main content
GET
/
boms
/
{bomId}
Single BOM
curl --request GET \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/boms/{bomId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "items": [
      {
        "id": 123,
        "bom_id": 123,
        "product_id": 123,
        "quantity": 123,
        "product": {
          "id": 123,
          "name": "<string>",
          "sku": "<string>",
          "description": "<string>"
        },
        "base_quantity": 123,
        "note": "<string>",
        "uom_id": 123,
        "unit_of_measure": {
          "id": 123,
          "name": "<string>"
        },
        "order": 123,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ],
    "extra_costs": [
      {
        "id": 123,
        "name": "<string>",
        "quantity": 123,
        "unit_price": 123,
        "line_total": 123,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ],
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Authenticate using a bearer token. To obtain a token, contact [email protected]

Path Parameters

bomId
integer
required

BOM ID

Response

Successful response

data
object