---
tags: locaweb
image: https://www.locaweb.com.br/images/open-graph.jpg
---
# EAAS-2133 - Refinamento
https://shorturl.at/osyFQ
Precificação de carrinho no **Cardápio**
`POST /precify`
```json
[
{
"plan_id": "",
"periodicity": 1,
"pricelist_id": "",
"quantity": 1,
"additionals": [
{
"service_key": "BBBBB"
}
]
},
]
```
```json=
{
[
{
"plan_id": "",
"periodicity": "",
"pricelist_id": "",
"description": "XXX",
"quantity": 1,
"purchase_price": 25.0,
"installation_fee": 0.0,
"recurrence_price": 25.0,
"discount": 25.0,
"services": [
{
"service_key": "AAAAA",
"description": "",
"purchase_price": 0.0,
"recurrence_price": 0.0,
"installation_fee": 0.0,
"type": "root"
},
{
"service_key": "BBBBB",
"description": "",
"purchase_price": 25.0,
"recurrence_price": 30.0,
"installation_fee": 0.0,
"type": "additional"
}
]
}
]
}
```
----
```json
[
{
"main_ref": "#1",
"bundle": [
{
"ref_id": "#1",
"plan_id": "",
"periodicity": 1,
"pricelist_id": "",
"quantity": 1,
"additionals": [
{
"service_key": "BBBBB"
}
]
},
{
"ref_id": "#2",
"plan_id": "",
"periodicity": 1,
"pricelist_id": "",
"quantity": 1,
"additionals": [
{
"service_key": "BBBBB"
}
]
}
]
},
{
"plan_id": "",
"periodicity": 1,
"pricelist_id": "",
"quantity": 1,
"additionals": [
{
"service_key": "BBBBB"
}
]
},
]
```
```json
[
{
"main_ref": "#1",
"bundle": [
{
"ref_id": "#1",
"plan_id": "",
"periodicity": 1,
"price_list_id": "",
"quantity": 1,
"additionals": [
{
"service_key": "BBBBB"
}
]
},
{
"ref_id": "#2",
"plan_id": "",
"periodicity": 1,
"pricelist_id": "",
"quantity": 1,
"additionals": [
{
"service_key": "BBBBB"
}
]
}
]
},
{
"ref_id": "#3",
"plan_id": "",
"periodicity": 1,
"pricelist_id": "",
"quantity": 1,
"additionals": [
{
"service_key": "BBBBB"
}
]
},
]
```
POST `/price_items`
```json
"title": "xxx",
"status": 422,
"detail" "...",
"errors": {
"1": [
"plan 'xxxx' not found",
"service '124' not found"
],
"2": [
"pricelist 'weqq' not found"
]
}
```
```json
[
{
"id": "1",
"errors": [
"plan 'xxxx' not found",
"service '124' not found"
],
},
{
"id": "2",
"errors": [
"pricelist 'weqq' not found"
],
}
]
```
