getItems() as $item) { if ($item->getShippingLabel() !== null) { $item->setShippingLabel(base64_encode($item->getShippingLabel())); } } return $searchResult; } /** * Convert shipping label from blob to base64encoded string * * @param \Magento\Sales\Api\ShipmentRepositoryInterface $shipmentRepository * @param \Magento\Sales\Api\Data\ShipmentInterface $shipment * @return \Magento\Sales\Api\Data\ShipmentInterface * * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function afterGet( \Magento\Sales\Api\ShipmentRepositoryInterface $shipmentRepository, \Magento\Sales\Api\Data\ShipmentInterface $shipment ) { if ($shipment->getShippingLabel() !== null) { $shipment->setShippingLabel(base64_encode($shipment->getShippingLabel())); } return $shipment; } }