GET api/BOMService/{id}?DataType={DataType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

DataType

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BOMService
NameDescriptionTypeAdditional information
BOMServiceId

integer

None.

BOMId

integer

None.

ServiceName

string

None.

ServiceDescription

string

None.

ServiceCharge

decimal number

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BOMServiceId": 1,
    "BOMId": 2,
    "ServiceName": "sample string 3",
    "ServiceDescription": "sample string 4",
    "ServiceCharge": 5.1,
    "CreatedDate": "2025-12-08T01:54:02.3769746+05:30",
    "CreatedBy": "sample string 7"
  },
  {
    "BOMServiceId": 1,
    "BOMId": 2,
    "ServiceName": "sample string 3",
    "ServiceDescription": "sample string 4",
    "ServiceCharge": 5.1,
    "CreatedDate": "2025-12-08T01:54:02.3769746+05:30",
    "CreatedBy": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBOMService xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
  <BOMService>
    <CreatedBy>sample string 7</CreatedBy>
    <CreatedDate>2025-12-08T01:54:02.3769746+05:30</CreatedDate>
    <BOMId>2</BOMId>
    <BOMServiceId>1</BOMServiceId>
    <ServiceCharge>5.1</ServiceCharge>
    <ServiceDescription>sample string 4</ServiceDescription>
    <ServiceName>sample string 3</ServiceName>
  </BOMService>
  <BOMService>
    <CreatedBy>sample string 7</CreatedBy>
    <CreatedDate>2025-12-08T01:54:02.3769746+05:30</CreatedDate>
    <BOMId>2</BOMId>
    <BOMServiceId>1</BOMServiceId>
    <ServiceCharge>5.1</ServiceCharge>
    <ServiceDescription>sample string 4</ServiceDescription>
    <ServiceName>sample string 3</ServiceName>
  </BOMService>
</ArrayOfBOMService>