Mike Harris
Mike Harris

Reputation: 21

Magento 2 API - Create shipping not updating order status

I am using the Magento 2 API call for creating shipments (/V1/shipment).

The shipment gets created in magento successfully, but the order status does not get moved to complete as I would expect.

My JSON request is as below:

{
    "entity": {
        "billingAddressId": 4,
        "comments": [],
        "items": [
            {
                "orderItemId": 2,
                "qty": 2
            }
        ],
        "orderId": 2,
        "shippingAddressId": 3,
        "totalQty": 2,
        "tracks": []
    }
}

Thanks

Upvotes: 1

Views: 2588

Answers (1)

Mike Harris
Mike Harris

Reputation: 21

It seems this is already a known bug in Magento as per here

Upvotes: 1

Related Questions