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": "705e8081-149a-4556-aa3f-3f80378c1d7b",
"IdCarrinhoItem": "b38145f3-ce6b-4e1c-9f73-4f20263d991e",
"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": "c23c0df4-7ed8-46ee-84fb-c18cef6144ba",
"IdCarrinho": "f69ed380-9908-43f2-ad84-523c8372d64f",
"IdCarrinhoItem": "1939deef-83b1-44bf-b421-bfcd45e4f0dd",
"IdGradeIngrediente": 4,
"IdGradeIngredienteItemValor": 5,
"IdIngrediente": 6,
"Qtde": 7.0,
"NomeGrade": "sample string 8",
"NomeIngrediente": "sample string 9",
"Valor": 10.0
},
{
"IdCarrinhoItemIngrediente": "c23c0df4-7ed8-46ee-84fb-c18cef6144ba",
"IdCarrinho": "f69ed380-9908-43f2-ad84-523c8372d64f",
"IdCarrinhoItem": "1939deef-83b1-44bf-b421-bfcd45e4f0dd",
"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.