Question

How to get tracking information from order shipment in magento 2?

Était-ce utile?

La solution

You can get all tracking details using this code :

$tracksCollection = $order->getTracksCollection();

foreach ($tracksCollection->getItems() as $track) {

     echo $track->getTrackNumber(); // Tracking number
     // You can get other details here.

}
Licencié sous: CC-BY-SA avec attribution
Non affilié à magento.stackexchange
scroll top