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": "289bb7e6-5e84-4744-b292-1fc426d78ecd",
"IdCarrinhoItem": "a1930ff9-e844-4291-8a01-ee35e2edb1a8",
"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": "1e93788b-9afd-424c-9dc6-b3d707800d93",
"IdCarrinho": "18c7fd54-48a9-434d-b11a-171fb1e1f0af",
"IdCarrinhoItem": "a0062a35-95e5-41b1-993f-1ac0406613fd",
"IdGradeIngrediente": 4,
"IdGradeIngredienteItemValor": 5,
"IdIngrediente": 6,
"Qtde": 7.0,
"NomeGrade": "sample string 8",
"NomeIngrediente": "sample string 9",
"Valor": 10.0
},
{
"IdCarrinhoItemIngrediente": "1e93788b-9afd-424c-9dc6-b3d707800d93",
"IdCarrinho": "18c7fd54-48a9-434d-b11a-171fb1e1f0af",
"IdCarrinhoItem": "a0062a35-95e5-41b1-993f-1ac0406613fd",
"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.