When we view an order via the API using a GET request e.g.
We can see there is a picked quantity at zero for one of our items
“quantity”: 1,
“picked_quantity”: 0,
However, if we attempt to update the picked_quantity using a PUT request sent to
https://api.veeqo.com/orders//allocations/
{
“warehouse_id”: ,
“line_items_attributes”: [
{
“sellable_id”: <sellable_id>,
“picked_quantity”: 1
}
]
}
We receive a 200 response and the allocation line as JSON but the picked_quantity (or any other value we try) is not updated.
Is this an API bug or is it permissions related?