Updating Picked Quantity

When we view an order via the API using a GET request e.g.

https://api.veeqo.com/orders/

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?

Thanks Tino, when will they be functional?

@Tino so order updates aren’t working but they just return a 200? For example, I’d like to update the quantity of a line item already present.