Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 572 Bytes

SHIPPING_EXCEPTION.md

File metadata and controls

20 lines (13 loc) · 572 Bytes

Orders with Delivery Problems

Creating a Transportation Exception to an Order

// ...

/** @var \SkyHub\Api\Handler\Request\Sales\OrderHandler $requestHandler */
$requestHandler = $api->order();

$orderId = 'Marketplace-000000001';

/** @var SkyHub\Api\Handler\Response\HandlerInterface $response */
$response = $requestHandler->shipmentException($orderId);
// ...

For more information, access the official_documentation.

Back