GET api/Instruction

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerInstruction
NameDescriptionTypeAdditional information
connotenumber

string

None.

instruction

string

None.

instructionDate

string

None.

feedback

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "connotenumber": "sample string 1",
    "instruction": "sample string 2",
    "instructionDate": "sample string 3",
    "feedback": "sample string 4"
  },
  {
    "connotenumber": "sample string 1",
    "instruction": "sample string 2",
    "instructionDate": "sample string 3",
    "feedback": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerInstruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationRest.Models">
  <CustomerInstruction>
    <connotenumber>sample string 1</connotenumber>
    <feedback>sample string 4</feedback>
    <instruction>sample string 2</instruction>
    <instructionDate>sample string 3</instructionDate>
  </CustomerInstruction>
  <CustomerInstruction>
    <connotenumber>sample string 1</connotenumber>
    <feedback>sample string 4</feedback>
    <instruction>sample string 2</instruction>
    <instructionDate>sample string 3</instructionDate>
  </CustomerInstruction>
</ArrayOfCustomerInstruction>