Retrieves BOM with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
project_bill_of_material| Name | Description | Type | Additional 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": "f4257b8b-5957-44e5-b587-051a0e958b9a",
"project_id": "26db54ee-4e9d-483f-b6f2-0bdf1a74138e",
"article_id": "49ac693f-5277-40ce-a8c5-31f80dc6853b",
"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-06-16T21:21:50.809961+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>49ac693f-5277-40ce-a8c5-31f80dc6853b</article_id> <article_name>sample string 7</article_name> <article_use_serial>true</article_use_serial> <id>f4257b8b-5957-44e5-b587-051a0e958b9a</id> <modified_dateutc>2026-06-16T21:21:50.809Z</modified_dateutc> <project_id>26db54ee-4e9d-483f-b6f2-0bdf1a74138e</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>