Establishing connection

Since communication with DHL24 ServicePoint API uses the SOAP protocol, integration with the service is relatively simple. Below you can find an example of running the method in PHP language.


 class DHL24_servicepoint_client extends SoapClient { const WSDL = 'https://dhl24.com.pl/servicepoint'; public function __construct() { parent::__construct( self::WSDL ); } } $client = new DHL24_servicepoint_client;

Obtaining a key

To be able to realise the full potential of working with API Servicepoint, you need to obtain a special key which is required to run every method of the service. In order to receive such key, please send us a message via our contact form (with category “WebAPI - obtaining access”).

Return to subject list