Mark orders as shipped
Requirements
Request parameters
Parameters
Type / Description
Request sample
require('PATH_TO_AUTH');
$RefNo = "789527422";
$TrackingNumber = '921840912';
$StopCustomerNotification = 1;
$Comment = "We send this note to confirm the shipment of your products.";
try {
$markOrderAsShipped = $client->markShipped($sessionID, $RefNo, $TrackingNumber, $StopCustomerNotification, $Comment);
}
catch (SoapFault $e) {
echo "OrderShipped: " . $e->getMessage();
exit;
}
var_dump("OrderShipped", $markOrderAsShipped);Response sample
Last updated
Was this helpful?