Skip to content

First call: query your account balance

The SOAP endpoint Recup_Credit returns the number of sends available on your account. Here is the same call in 4 languages.

<?php
include('nusoap/nusoap.php');

$client = new soapclient('http://www.mdworks.info/_soap/control.php');
$params = ['login' => 'your_login', 'motdepasse' => 'your_password'];

$quota = $client->call('Recup_Credit', $params);

if ($client->fault) {
    die("SOAP error: {$client->faultstring}");
}

echo "Available quota: {$quota}\n";
Production endpoint: https://www.mdworks.info/_soap/control.php WSDL (for Python/Zeep): append ?wsdl to the URL. Authentication: login and motdepasse of the Ediware account. No JWT token, no OAuth.
Last updated on