GET api/SepcialInstructions?Lut={Lut}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Lut

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of InstructionModel
NameDescriptionTypeAdditional information
Id

integer

None.

Short_Code

string

None.

Name

string

None.

Is_Deleted

integer

None.

Lut

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Short_Code": "sample string 2",
    "Name": "sample string 3",
    "Is_Deleted": 4,
    "Lut": 5
  },
  {
    "Id": 1,
    "Short_Code": "sample string 2",
    "Name": "sample string 3",
    "Is_Deleted": 4,
    "Lut": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfInstructionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model">
  <InstructionModel>
    <Id>1</Id>
    <Is_Deleted>4</Is_Deleted>
    <Lut>5</Lut>
    <Name>sample string 3</Name>
    <Short_Code>sample string 2</Short_Code>
  </InstructionModel>
  <InstructionModel>
    <Id>1</Id>
    <Is_Deleted>4</Is_Deleted>
    <Lut>5</Lut>
    <Name>sample string 3</Name>
    <Short_Code>sample string 2</Short_Code>
  </InstructionModel>
</ArrayOfInstructionModel>