Retrieves BOM with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

project_bill_of_material
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
project_id

Project Id

globally unique identifier
article_id

Article Id

globally unique identifier
serial_number

Serial number

string

Max length: 255

quantity

Quantity

decimal number
article_code

Article code

string

Max length: 50

article_name

Article name

string

Max length: 50

article_description

Article description

string

Max length: 50

warranty_period_nb_months

Period warranty

integer
article_use_serial

Aricle use serial

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "a8d88f27-b26c-4ddb-8d6f-f957b3918b06",
  "project_id": "6c9503e5-8acd-4f65-98ab-51c83e060772",
  "article_id": "47385c01-885f-4b19-a41b-4fdb9703c410",
  "serial_number": "sample string 4",
  "quantity": 5.0,
  "article_code": "sample string 6",
  "article_name": "sample string 7",
  "article_description": "sample string 8",
  "warranty_period_nb_months": 9,
  "article_use_serial": true,
  "modified_dateutc": "2026-01-11T23:53:34.9167182+00:00"
}

application/xml, text/xml

Sample:
<project_bill_of_material xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <article_code>sample string 6</article_code>
  <article_description>sample string 8</article_description>
  <article_id>47385c01-885f-4b19-a41b-4fdb9703c410</article_id>
  <article_name>sample string 7</article_name>
  <article_use_serial>true</article_use_serial>
  <id>a8d88f27-b26c-4ddb-8d6f-f957b3918b06</id>
  <modified_dateutc>2026-01-11T23:53:34.916Z</modified_dateutc>
  <project_id>6c9503e5-8acd-4f65-98ab-51c83e060772</project_id>
  <quantity>5</quantity>
  <serial_number>sample string 4</serial_number>
  <warranty_period_nb_months>9</warranty_period_nb_months>
</project_bill_of_material>