GET api/BOMInstructions/{id}?DataType={DataType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| DataType | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BOMAssemblyInstruction| Name | Description | Type | Additional information |
|---|---|---|---|
| BOMAssemblyInstructionId | integer |
None. |
|
| BOMId | integer |
None. |
|
| AssemblyInstruction | string |
None. |
|
| CreatedDate | date |
Data type: DateTime |
|
| CreatedBy | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BOMAssemblyInstructionId": 1,
"BOMId": 2,
"AssemblyInstruction": "sample string 3",
"CreatedDate": "2025-12-08T01:55:38.54885+05:30",
"CreatedBy": "sample string 5"
},
{
"BOMAssemblyInstructionId": 1,
"BOMId": 2,
"AssemblyInstruction": "sample string 3",
"CreatedDate": "2025-12-08T01:55:38.54885+05:30",
"CreatedBy": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfBOMAssemblyInstruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
<BOMAssemblyInstruction>
<CreatedBy>sample string 5</CreatedBy>
<CreatedDate>2025-12-08T01:55:38.54885+05:30</CreatedDate>
<AssemblyInstruction>sample string 3</AssemblyInstruction>
<BOMAssemblyInstructionId>1</BOMAssemblyInstructionId>
<BOMId>2</BOMId>
</BOMAssemblyInstruction>
<BOMAssemblyInstruction>
<CreatedBy>sample string 5</CreatedBy>
<CreatedDate>2025-12-08T01:55:38.54885+05:30</CreatedDate>
<AssemblyInstruction>sample string 3</AssemblyInstruction>
<BOMAssemblyInstructionId>1</BOMAssemblyInstructionId>
<BOMId>2</BOMId>
</BOMAssemblyInstruction>
</ArrayOfBOMAssemblyInstruction>