Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 543 Bytes

CANCEL.md

File metadata and controls

20 lines (13 loc) · 543 Bytes

Cancelling a order

// ...

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

$orderId = 'Marketplace-000000001';

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

For more information, access the official_documentation.

Back

Continue: Adding an Order Track