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": "351965d9-ce85-49b8-9ee9-9920b82b0ae8",
"IdCarrinhoItem": "a16fbfd9-0bbb-44fb-9096-7e034ab349a5",
"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": "dab75d32-6c90-4001-8fc1-2f33b67c0580",
"IdCarrinho": "23c33462-61ce-46f1-b2eb-f1a3b19a6ad1",
"IdCarrinhoItem": "c34dfc0a-ba2d-4d60-94be-86c521f9a4d4",
"IdGradeIngrediente": 4,
"IdGradeIngredienteItemValor": 5,
"IdIngrediente": 6,
"Qtde": 7.0,
"NomeGrade": "sample string 8",
"NomeIngrediente": "sample string 9",
"Valor": 10.0
},
{
"IdCarrinhoItemIngrediente": "dab75d32-6c90-4001-8fc1-2f33b67c0580",
"IdCarrinho": "23c33462-61ce-46f1-b2eb-f1a3b19a6ad1",
"IdCarrinhoItem": "c34dfc0a-ba2d-4d60-94be-86c521f9a4d4",
"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.