GET api/Empregado/{id}

Get dados do empregado

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

do empregado

integer

Required

Body Parameters

None.

Response Information

Resource Description

o empregado com a id dado ou nada se nao existir

Empregado
NameDescriptionTypeAdditional information
Id

integer

None.

Nome

string

None.

Apelido

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Nome": "sample string 2",
  "Apelido": "sample string 3"
}

application/xml, text/xml

Sample:
<Empregado xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication.Models">
  <Apelido>sample string 3</Apelido>
  <Id>1</Id>
  <Nome>sample string 2</Nome>
</Empregado>