GET api/tblEmps

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of tblEmp
NameDescriptionTypeAdditional information
id

integer

None.

eName

string

None.

Addr

string

None.

Phone

string

None.

VecId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "eName": "sample string 2",
    "Addr": "sample string 3",
    "Phone": "sample string 4",
    "VecId": 5
  },
  {
    "id": 1,
    "eName": "sample string 2",
    "Addr": "sample string 3",
    "Phone": "sample string 4",
    "VecId": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOftblEmp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes">
  <tblEmp>
    <Addr>sample string 3</Addr>
    <Phone>sample string 4</Phone>
    <VecId>5</VecId>
    <eName>sample string 2</eName>
    <id>1</id>
  </tblEmp>
  <tblEmp>
    <Addr>sample string 3</Addr>
    <Phone>sample string 4</Phone>
    <VecId>5</VecId>
    <eName>sample string 2</eName>
    <id>1</id>
  </tblEmp>
</ArrayOftblEmp>