GET api/AssemblyInstruction

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AssemblyInstruction
NameDescriptionTypeAdditional information
AssemblyInstructionId

integer

None.

Description

string

None.

IsActive

boolean

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AssemblyInstructionId": 1,
    "Description": "sample string 2",
    "IsActive": true,
    "CreatedDate": "2025-12-08T01:53:19.6894916+05:30",
    "CreatedBy": "sample string 5"
  },
  {
    "AssemblyInstructionId": 1,
    "Description": "sample string 2",
    "IsActive": true,
    "CreatedDate": "2025-12-08T01:53:19.6894916+05:30",
    "CreatedBy": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAssemblyInstruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
  <AssemblyInstruction>
    <CreatedBy>sample string 5</CreatedBy>
    <CreatedDate>2025-12-08T01:53:19.6894916+05:30</CreatedDate>
    <AssemblyInstructionId>1</AssemblyInstructionId>
    <Description>sample string 2</Description>
    <IsActive>true</IsActive>
  </AssemblyInstruction>
  <AssemblyInstruction>
    <CreatedBy>sample string 5</CreatedBy>
    <CreatedDate>2025-12-08T01:53:19.6894916+05:30</CreatedDate>
    <AssemblyInstructionId>1</AssemblyInstructionId>
    <Description>sample string 2</Description>
    <IsActive>true</IsActive>
  </AssemblyInstruction>
</ArrayOfAssemblyInstruction>