I'm using the Magento API (SOAP V2) to create a shipment.
I need to create a partial order but can't seem to get it to work. It just sets all items as shipped.
From the documentation, I'm using:
$result = $proxy->salesOrderShipmentCreate($sessionId, '200000006', array('8', '1'), 'shipment comment');
where
array('8','1')
is the order_item_id and quantity.
I've tried manually putting the sku and the actual product id in and it still doesn't register as a partial order.
Can anyone help me creating a partial order?