POST api/Orcamento

Request Information

URI Parameters

None.

Body Parameters

Orcamento
NameDescriptionTypeAdditional information
IdOrcamento

integer

None.

CLiente

string

None.

Telefone

string

None.

Qtde

integer

None.

Produto

string

None.

Request Formats

application/json, text/json

Sample:
{
  "IdOrcamento": 1,
  "CLiente": "sample string 2",
  "Telefone": "sample string 3",
  "Qtde": 4,
  "Produto": "sample string 5"
}

application/xml, text/xml

Sample:
<Orcamento xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAdministrador.Models">
  <CLiente>sample string 2</CLiente>
  <IdOrcamento>1</IdOrcamento>
  <Produto>sample string 5</Produto>
  <Qtde>4</Qtde>
  <Telefone>sample string 3</Telefone>
</Orcamento>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Orcamento'.

Response Information

Resource Description

None.