| Filtro | Formato |
|---|---|
| productUnitStock.productIds | Ids de produtos separados por vírgula. Ex.: 1, 2 |
curl --location '/stocks' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'{
"offset": 0,
"limit": 50,
"count": 2,
"data": [
{
"sku": "6-3-4",
"stock": 25,
"minimumStock": 0,
"stockLocation": "",
"stockControl": true,
"active": true
},
{
"sku": "6-4-4",
"stock": 25,
"minimumStock": 0,
"stockLocation": "",
"stockControl": true,
"active": true
}
]
}