Area Sviluppatori
The SendMiner service gives you a standard interface to interact with SendMiner platform and synchronize it with your informatic system.
The service is available through the URL :
http://www.sendminer.it/sm/SMWebService?wsdl
SendMiner Web Service Interface
Expose all methods necessary to interact with the SendMiner platform.
Ecco un esempio di web service interfacciato con PHP:
<?xml version="1.0" ?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ns1="http://ws.scminer.custom.sintraconsulting.it/">
<soapenv:Body>
<ns1:EmailSubscribe>
<username>*****</username>
<password>*****</password>
<groupId>153</groupId>
<emailAddress>ewemail22@sintraconsulting.it</emailAddress>
</ns1:EmailSubscribe>
</soapenv:Body>
</soapenv:Envelope>
|
Puoi scaricare un
esempio del PHP da quì.
Ecco alcune funzioni d'esempio :
EmailSubscribe
Subscribe Service.
Parameters:
- username : SendMiner Username
- password : SendMiner Password
- groupId : SendMiner Group numeric identificator (1)
- emailAddress : Email Address to be subscribed.
Returns:
true if successfully executed ,
false if not (or email is existent).
EmailUnsubscribe
Unsubscribe Service.
Parameters:
- username : SendMiner Username
- password : SendMiner Password
- groupId : SendMiner Group numeric identificator (1)
- emailAddress : Email Address to be unsubscribed.
Returns:
true if successfully executed ,
false if not (or email is not existent).
Per visionare tutte le altre funzioni
consulta il JavaDoc