Retrieves BOM
Request Information
URI Parameters :
None.
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": "ce4892b8-e355-4a81-ab2f-905765ec9af1",
"project_id": "7bf5aca8-63f0-4731-ac0d-e39d24074128",
"article_id": "0c1a5326-07bb-42f0-90aa-38b7abdd1221",
"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-11T21:02:00.4725878+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>0c1a5326-07bb-42f0-90aa-38b7abdd1221</article_id> <article_name>sample string 7</article_name> <article_use_serial>true</article_use_serial> <id>ce4892b8-e355-4a81-ab2f-905765ec9af1</id> <modified_dateutc>2026-01-11T21:02:00.472Z</modified_dateutc> <project_id>7bf5aca8-63f0-4731-ac0d-e39d24074128</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>