i was trying to update tracking number for testing purpose. i called api v3 i.e https://apiverson.ordoro.com/order/order_number/mark_as_shipped the order is marked as shipped but tracking number is not being updated. please help. thanks
If you take a look at the documentation for /mark_as_shipped
, you’ll see that this endpoint takes no request body. This simply marks the order as status=shipped.
To update shipping information on the order, such as tracking, you’ll want to use PUT /order/{order_number}/shipping_info
: doc link.
Hope this helps!
thanks