I am using the create shipment API call, which is successfully creating me a shipping entry. However, the order status does not get marked as complete.
My JSON request is as follows:
{
"entity": {
"billingAddressId": 4,
"comments": [],
"items": [
{
"orderItemId": 2,
"qty": 2
}
],
"orderId": 2,
"shippingAddressId": 3,
"totalQty": 2,
"tracks": []
}
}
Thanks