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.";
$jsonRpcRequest = new stdClass();
$jsonRpcRequest->jsonrpc = '2.0';
$jsonRpcRequest->method = 'markShipped';
$jsonRpcRequest->params = array($sessionID, $RefNo, $TrackingNumber, $StopCustomerNotification, $Comment);
$jsonRpcRequest->id = $i++;
$markOrderAsShipped = callRPC($jsonRpcRequest, $host);
var_dump($markOrderAsShipped);Response
Last updated
Was this helpful?