GET api/MrGetHeader

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Header
NameDescriptionTypeAdditional information
HeaderID

integer

None.

HeaderName

string

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "headerID": 1,
    "headerName": "sample string 2"
  },
  {
    "headerID": 1,
    "headerName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHeader xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_Api.Controllers">
  <Header>
    <HeaderID>1</HeaderID>
    <HeaderName>sample string 2</HeaderName>
  </Header>
  <Header>
    <HeaderID>1</HeaderID>
    <HeaderName>sample string 2</HeaderName>
  </Header>
</ArrayOfHeader>