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": "426c0ca3-2c08-42f1-a1ab-86605c04686d",
"IdCarrinhoItem": "e2881d67-35a2-4177-938c-884b5c7ce68f",
"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": "9aae928f-1a9f-4ac4-a335-0feef50fdd49",
"IdCarrinho": "1686b149-354e-4477-ab45-d5d2f33cdc9d",
"IdCarrinhoItem": "11e2126b-4f9d-46b3-b826-64759e713613",
"IdGradeIngrediente": 4,
"IdGradeIngredienteItemValor": 5,
"IdIngrediente": 6,
"Qtde": 7.0,
"NomeGrade": "sample string 8",
"NomeIngrediente": "sample string 9",
"Valor": 10.0
},
{
"IdCarrinhoItemIngrediente": "9aae928f-1a9f-4ac4-a335-0feef50fdd49",
"IdCarrinho": "1686b149-354e-4477-ab45-d5d2f33cdc9d",
"IdCarrinhoItem": "11e2126b-4f9d-46b3-b826-64759e713613",
"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.