PHP code example of enbit / dhl-returns-rest-api
1. Go to this page and download the library: Download enbit/dhl-returns-rest-api library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
enbit / dhl-returns-rest-api example snippets
use Enbit\Dhl\Retoure\Auth\AuthenticationStorage;
use Enbit\Dhl\Retoure\Service\ServiceFactory;
use Enbit\Dhl\Retoure\Model\ReturnLabelRequestBuilder;
$authStorage = new AuthenticationStorage(
'applicationId',
'applicationToken',
'user',
'signature'
);
$serviceFactory = new ServiceFactory(
$authStorage,
$sandbox = true
);
$service = $serviceFactory->createReturnLabelService();
$requestBuilder = new ReturnLabelRequestBuilder();
$requestBuilder->setAccountDetails($receiverId = 'DE');
$requestBuilder->setShipperAddress(
$name = 'Jane Doe',
$countryCode = 'DE',
$postalCode = '53113',
$city = 'Bonn',
$streetName = 'Sträßchensweg',
$streetNumber = '2'
);
$returnOrder = $requestBuilder->create();
$confirmation = $service->bookLabel($returnOrder);
$confirmation->getLabelData();
$confirmation->getQrLabelData();
$confirmation->getRoutingCode();
$confirmation->getShipmentNumber();