Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 670 Bytes

INVOICE.md

File metadata and controls

22 lines (14 loc) · 670 Bytes

Invoicing an Order

To invoice an order you need to have in hands the number of the fiscal note to send it on request.

// ...

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

$nfKey = '99999999999999999999999999999999999999999999';

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

For more information, access the official_documentation.

Back

Continue: Cancelling an Order