POST api/Empregado

Registo de novo empregado

Request Information

URI Parameters

None.

Body Parameters

Empregado

Empregado
NameDescriptionTypeAdditional information
Id

integer

None.

Nome

string

None.

Apelido

string

None.

Request 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/WebApiDemo.Models">
  <Apelido>sample string 3</Apelido>
  <Id>1</Id>
  <Nome>sample string 2</Nome>
</Empregado>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.