Skip to content
How to access the SOAP API

Connect to the API

The API is available at the following addresses:

Warning: API access is restricted to authorized IPs. Before anything else, you must send us the IP address(es) from which you will be accessing the API.

Example with NuSOAP

include('nusoap/nusoap.php'); // Include the NuSOAP library
$client = new soapclient('https://www.eml-srv.com/_soap/control.php'); // Initialize SOAP
// Remove the s from 'https' if curl is not installed

Example with PHP5

$client = new SoapClient(null, array('location' => "https://www.eml-srv.com/_soap/control.php",
'uri'      => "https://www.eml-srv.com"));
Last updated on