POST api/carrinho/adicionar-item
Request Information
URI Parameters
None.
Body Parameters
CarrinhoItem| Name | Description | Type | Additional information |
|---|---|---|---|
| IdCarrinho | globally unique identifier |
None. |
|
| IdCarrinhoItem | globally unique identifier |
None. |
|
| Sequencia | integer |
None. |
|
| IdProduto | string |
None. |
|
| Nome | string |
None. |
|
| Descricao | string |
None. |
|
| Observacao | string |
None. |
|
| Valor | decimal number |
None. |
|
| Quantidade | decimal number |
None. |
|
| StatusComplementos | StatusComplementosIngredientes |
None. |
|
| StatusComplementosDescricao | string |
None. |
|
| CarrinhoItemIngredientes | Collection of CarrinhoItemIngrediente |
None. |
|
| IngredientesDoProduto | Object |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdCarrinho": "b104ab1e-08ff-4050-b9d7-61dfc9e16d78",
"IdCarrinhoItem": "27122eb3-5692-42cc-a233-bb46bc9d605f",
"Sequencia": 3,
"IdProduto": "sample string 4",
"Nome": "sample string 5",
"Descricao": "sample string 6",
"Observacao": "sample string 7",
"Valor": 8.0,
"Quantidade": 9.0,
"StatusComplementos": 0,
"StatusComplementosDescricao": "Sem Complemento",
"CarrinhoItemIngredientes": [
{
"IdCarrinhoItemIngrediente": "58b08d49-a611-4880-a6c6-86c4656d7816",
"IdCarrinho": "a0a1f7a0-b6d0-4392-b3bb-e49fad706154",
"IdCarrinhoItem": "27227732-1a39-45eb-ba0c-92d10adbba75",
"IdGradeIngrediente": 4,
"IdGradeIngredienteItemValor": 5,
"IdIngrediente": 6,
"Qtde": 7.0,
"NomeGrade": "sample string 8",
"NomeIngrediente": "sample string 9",
"Valor": 10.0
},
{
"IdCarrinhoItemIngrediente": "58b08d49-a611-4880-a6c6-86c4656d7816",
"IdCarrinho": "a0a1f7a0-b6d0-4392-b3bb-e49fad706154",
"IdCarrinhoItem": "27227732-1a39-45eb-ba0c-92d10adbba75",
"IdGradeIngrediente": 4,
"IdGradeIngredienteItemValor": 5,
"IdIngrediente": 6,
"Qtde": 7.0,
"NomeGrade": "sample string 8",
"NomeIngrediente": "sample string 9",
"Valor": 10.0
}
],
"IngredientesDoProduto": {}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.