GET api/Orcamento
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Orcamento| Name | Description | Type | Additional information |
|---|---|---|---|
| IdOrcamento | integer |
None. |
|
| CLiente | string |
None. |
|
| Telefone | string |
None. |
|
| Qtde | integer |
None. |
|
| Produto | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"IdOrcamento": 1,
"CLiente": "sample string 2",
"Telefone": "sample string 3",
"Qtde": 4,
"Produto": "sample string 5"
},
{
"IdOrcamento": 1,
"CLiente": "sample string 2",
"Telefone": "sample string 3",
"Qtde": 4,
"Produto": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfOrcamento xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAdministrador.Models">
<Orcamento>
<CLiente>sample string 2</CLiente>
<IdOrcamento>1</IdOrcamento>
<Produto>sample string 5</Produto>
<Qtde>4</Qtde>
<Telefone>sample string 3</Telefone>
</Orcamento>
<Orcamento>
<CLiente>sample string 2</CLiente>
<IdOrcamento>1</IdOrcamento>
<Produto>sample string 5</Produto>
<Qtde>4</Qtde>
<Telefone>sample string 3</Telefone>
</Orcamento>
</ArrayOfOrcamento>