DELETE api/tblEmps?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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
}

application/xml, text/xml

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