mailing
59 Methoden verfügbar
Keine Methoden gefunden für ""
Returns all impression of a mailing in the given time
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheMailingImpression |
PHP Implementierung anzeigen
<?php
/**
* Returns all impression of a mailing in the given time
* Service: mailing
* @return ArrayOfEvalancheMailingImpression
* Felder:
* - item (EvalancheMailingImpression)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'start_timestamp' => 0, // int
'end_timestamp' => 0, // int
];
$result = $client->getImpressions($params);
// Rückgabewert: ArrayOfEvalancheMailingImpression
// $result->item (EvalancheMailingImpression)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getImpressions xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<start_timestamp>0</start_timestamp> <!-- int, optional -->
<end_timestamp>0</end_timestamp> <!-- int, optional -->
</tns:getImpressions>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getImpressions"
Authorization: Basic {base64(username:password)}
Returns all clicks in a mailing in the given time
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheMailingClick |
PHP Implementierung anzeigen
<?php
/**
* Returns all clicks in a mailing in the given time
* Service: mailing
* @return ArrayOfEvalancheMailingClick
* Felder:
* - item (EvalancheMailingClick)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'start_timestamp' => 0, // int
'end_timestamp' => 0, // int
];
$result = $client->getClicks($params);
// Rückgabewert: ArrayOfEvalancheMailingClick
// $result->item (EvalancheMailingClick)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getClicks xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<start_timestamp>0</start_timestamp> <!-- int, optional -->
<end_timestamp>0</end_timestamp> <!-- int, optional -->
</tns:getClicks>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getClicks"
Authorization: Basic {base64(username:password)}
Get subjectslines and corresponding targetgroup ids for a mailing
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheMailingSubject |
PHP Implementierung anzeigen
<?php
/**
* Get subjectslines and corresponding targetgroup ids for a mailing
* Service: mailing
* @return ArrayOfEvalancheMailingSubject
* Felder:
* - item (EvalancheMailingSubject)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
];
$result = $client->getSubjects($params);
// Rückgabewert: ArrayOfEvalancheMailingSubject
// $result->item (EvalancheMailingSubject)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getSubjects xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
</tns:getSubjects>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getSubjects"
Authorization: Basic {base64(username:password)}
Set the subjectlines for a specific mailing. Overwrites existing subjects.
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Set the subjectlines for a specific mailing. Overwrites existing subjects.
* Service: mailing
* @return boolean
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'subjects' => '', // tns:ArrayOfEvalancheMailingSubject (required)
];
$result = $client->setSubjects($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:setSubjects xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<subjects></subjects> <!-- tns:ArrayOfEvalancheMailingSubject, required -->
</tns:setSubjects>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#setSubjects"
Authorization: Basic {base64(username:password)}
Gets details of a mailing
Rückgabewert
| Feld | Typ |
|---|---|
| timestamp | int |
| recipients | int |
| sent | boolean |
| preview_url | string |
| report_url | string |
| admin_url | string |
| subject | string |
| targetgroup_id | int |
| send_start_time | int |
| send_end_time | int |
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Gets details of a mailing
* Service: mailing
* @return EvalancheMailingInformation
* Felder:
* - timestamp (int)
* - recipients (int)
* - sent (boolean)
* - preview_url (string)
* - report_url (string)
* - admin_url (string)
* - subject (string)
* - targetgroup_id (int)
* - send_start_time (int)
* - send_end_time (int)
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
];
$result = $client->getDetails($params);
// Rückgabewert: EvalancheMailingInformation
// $result->timestamp (int)
// $result->recipients (int)
// $result->sent (boolean)
// $result->preview_url (string)
// $result->report_url (string)
// $result->admin_url (string)
// $result->subject (string)
// $result->targetgroup_id (int)
// $result->send_start_time (int)
// $result->send_end_time (int)
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getDetails xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
</tns:getDetails>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getDetails"
Authorization: Basic {base64(username:password)}
Returns mailings which could be sent out
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheResourceInformation |
PHP Implementierung anzeigen
<?php
/**
* Returns mailings which could be sent out
* Service: mailing
* @return ArrayOfEvalancheResourceInformation
* Felder:
* - item (EvalancheResourceInformation)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'unsent' => true, // boolean
];
$result = $client->getSendableDrafts($params);
// Rückgabewert: ArrayOfEvalancheResourceInformation
// $result->item (EvalancheResourceInformation)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getSendableDrafts xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<unsent>true</unsent> <!-- boolean, optional -->
</tns:getSendableDrafts>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getSendableDrafts"
Authorization: Basic {base64(username:password)}
getSendableDraftsByMandatorId
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheResourceInformation |
PHP Implementierung anzeigen
<?php
/**
* getSendableDraftsByMandatorId
* Service: mailing
* @return ArrayOfEvalancheResourceInformation
* Felder:
* - item (EvalancheResourceInformation)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mandator_id' => 0, // int
'unsent' => true, // boolean
];
$result = $client->getSendableDraftsByMandatorId($params);
// Rückgabewert: ArrayOfEvalancheResourceInformation
// $result->item (EvalancheResourceInformation)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getSendableDraftsByMandatorId xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mandator_id>0</mandator_id> <!-- int, optional -->
<unsent>true</unsent> <!-- boolean, optional -->
</tns:getSendableDraftsByMandatorId>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getSendableDraftsByMandatorId"
Authorization: Basic {base64(username:password)}
Creates a new mailing draft
Rückgabewert
| Feld | Typ |
|---|---|
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Creates a new mailing draft
* Service: mailing
* @return EvalancheResourceInformation
* Felder:
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'name' => '', // string (required)
'template_id' => 0, // int (required)
'category_id' => 0, // int
'type_id' => 0, // int
];
$result = $client->createDraft($params);
// Rückgabewert: EvalancheResourceInformation
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:createDraft xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<name></name> <!-- string, required -->
<template_id>0</template_id> <!-- int, required -->
<category_id>0</category_id> <!-- int, optional -->
<type_id>0</type_id> <!-- int, optional -->
</tns:createDraft>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#createDraft"
Authorization: Basic {base64(username:password)}
Sends a sendable mailing draft to the members of a targetgroup
Rückgabewert
| Feld | Typ |
|---|---|
| timestamp | int |
| recipients | int |
| sent | boolean |
| preview_url | string |
| report_url | string |
| admin_url | string |
| subject | string |
| targetgroup_id | int |
| send_start_time | int |
| send_end_time | int |
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Sends a sendable mailing draft to the members of a targetgroup
* Service: mailing
* @return EvalancheMailingInformation
* Felder:
* - timestamp (int)
* - recipients (int)
* - sent (boolean)
* - preview_url (string)
* - report_url (string)
* - admin_url (string)
* - subject (string)
* - targetgroup_id (int)
* - send_start_time (int)
* - send_end_time (int)
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'targetgroup_id' => 0, // int (required)
'send_time' => 0, // int
'speed' => 0, // int
];
$result = $client->sendToTargetgroup($params);
// Rückgabewert: EvalancheMailingInformation
// $result->timestamp (int)
// $result->recipients (int)
// $result->sent (boolean)
// $result->preview_url (string)
// $result->report_url (string)
// $result->admin_url (string)
// $result->subject (string)
// $result->targetgroup_id (int)
// $result->send_start_time (int)
// $result->send_end_time (int)
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:sendToTargetgroup xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<targetgroup_id>0</targetgroup_id> <!-- int, required -->
<send_time>0</send_time> <!-- int, optional -->
<speed>0</speed> <!-- int, optional -->
</tns:sendToTargetgroup>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#sendToTargetgroup"
Authorization: Basic {base64(username:password)}
Sends a mailing to profiles given by single profile id or a list of profile ids
Rückgabewert
| Feld | Typ |
|---|---|
| item | int |
PHP Implementierung anzeigen
<?php
/**
* Sends a mailing to profiles given by single profile id or a list of profile ids
* Service: mailing
* @return ArrayOfInt
* Felder:
* - item (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'profile_ids' => '', // tns:ArrayOfInt (required)
];
$result = $client->sendToProfiles($params);
// Rückgabewert: ArrayOfInt
// $result->item (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:sendToProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<profile_ids></profile_ids> <!-- tns:ArrayOfInt, required -->
</tns:sendToProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#sendToProfiles"
Authorization: Basic {base64(username:password)}
Get statistics about the mailing, its media, links and articles
Rückgabewert
| Feld | Typ |
|---|---|
| addressees | int |
| recipients | int |
| duplicates | int |
| blacklisted | int |
| robinsonlisted | int |
| hardbounces | int |
| softbounces | int |
| unsubscribes | int |
| impressions | int |
| unique_impressions | int |
| clicks | int |
| unique_clicks | int |
| media | ArrayOfEvalancheMediaStatistics |
| articles | ArrayOfEvalancheArticleStatistics |
| links | ArrayOfEvalancheLinkStatistics |
PHP Implementierung anzeigen
<?php
/**
* Get statistics about the mailing, its media, links and articles
* Service: mailing
* @return EvalancheMailingStatistics
* Felder:
* - addressees (int)
* - recipients (int)
* - duplicates (int)
* - blacklisted (int)
* - robinsonlisted (int)
* - hardbounces (int)
* - softbounces (int)
* - unsubscribes (int)
* - impressions (int)
* - unique_impressions (int)
* - clicks (int)
* - unique_clicks (int)
* - media (ArrayOfEvalancheMediaStatistics)
* - articles (ArrayOfEvalancheArticleStatistics)
* - links (ArrayOfEvalancheLinkStatistics)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
];
$result = $client->getStatistics($params);
// Rückgabewert: EvalancheMailingStatistics
// $result->addressees (int)
// $result->recipients (int)
// $result->duplicates (int)
// $result->blacklisted (int)
// $result->robinsonlisted (int)
// $result->hardbounces (int)
// $result->softbounces (int)
// $result->unsubscribes (int)
// $result->impressions (int)
// $result->unique_impressions (int)
// $result->clicks (int)
// $result->unique_clicks (int)
// $result->media (ArrayOfEvalancheMediaStatistics)
// $result->articles (ArrayOfEvalancheArticleStatistics)
// $result->links (ArrayOfEvalancheLinkStatistics)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getStatistics xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
</tns:getStatistics>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getStatistics"
Authorization: Basic {base64(username:password)}
Returns list of addressees with optional profile data of a mailing
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheProfileMailingStatus2 |
PHP Implementierung anzeigen
<?php
/**
* Returns list of addressees with optional profile data of a mailing
* Service: mailing
* @return ArrayOfEvalancheProfileMailingStatus2
* Felder:
* - item (EvalancheProfileMailingStatus2)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'timeframe' => 0, // int
'profile_attributes' => '', // tns:ArrayOfString
];
$result = $client->getStatus($params);
// Rückgabewert: ArrayOfEvalancheProfileMailingStatus2
// $result->item (EvalancheProfileMailingStatus2)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getStatus xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<timeframe>0</timeframe> <!-- int, optional -->
<profile_attributes></profile_attributes> <!-- tns:ArrayOfString, optional -->
</tns:getStatus>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getStatus"
Authorization: Basic {base64(username:password)}
Returns impression profiles list of the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns impression profiles list of the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString
];
$result = $client->getImpressionProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getImpressionProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, optional -->
</tns:getImpressionProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getImpressionProfiles"
Authorization: Basic {base64(username:password)}
Returns multiple-impression profiles list of the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns multiple-impression profiles list of the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString
];
$result = $client->getMultipleImpressionProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getMultipleImpressionProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, optional -->
</tns:getMultipleImpressionProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getMultipleImpressionProfiles"
Authorization: Basic {base64(username:password)}
Returns clicker profiles list of the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns clicker profiles list of the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString
];
$result = $client->getClickProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getClickProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, optional -->
</tns:getClickProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getClickProfiles"
Authorization: Basic {base64(username:password)}
Returns multiple-clicker profiles list of the given mailing.
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns multiple-clicker profiles list of the given mailing.
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getMultipleClickProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getMultipleClickProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getMultipleClickProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getMultipleClickProfiles"
Authorization: Basic {base64(username:password)}
Returns recipient profiles list of the given mailing.
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns recipient profiles list of the given mailing.
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getRecipientsProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getRecipientsProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getRecipientsProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getRecipientsProfiles"
Authorization: Basic {base64(username:password)}
Returns bounced profiles list of the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns bounced profiles list of the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getBounceProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getBounceProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getBounceProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getBounceProfiles"
Authorization: Basic {base64(username:password)}
Returns hardbounced profiles list of the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns hardbounced profiles list of the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getHardbounceProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getHardbounceProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getHardbounceProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getHardbounceProfiles"
Authorization: Basic {base64(username:password)}
Returns softbounced profiles list of the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns softbounced profiles list of the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getSoftbounceProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getSoftbounceProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getSoftbounceProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getSoftbounceProfiles"
Authorization: Basic {base64(username:password)}
Returns unsubscribed profiles list of the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns unsubscribed profiles list of the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getUnsubscriptionProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getUnsubscriptionProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getUnsubscriptionProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getUnsubscriptionProfiles"
Authorization: Basic {base64(username:password)}
Returns impression profiles list for any of the articles in the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns impression profiles list for any of the articles in the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getAllArticleImpressionProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getAllArticleImpressionProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getAllArticleImpressionProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getAllArticleImpressionProfiles"
Authorization: Basic {base64(username:password)}
Returns click profiles list for any of the articles in the given mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns click profiles list for any of the articles in the given mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getAllLinkClickProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getAllLinkClickProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getAllLinkClickProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getAllLinkClickProfiles"
Authorization: Basic {base64(username:password)}
Returns impression profiles list for the given article in the mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns impression profiles list for the given article in the mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'article_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getArticleImpressionProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getArticleImpressionProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<article_id>0</article_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getArticleImpressionProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getArticleImpressionProfiles"
Authorization: Basic {base64(username:password)}
Returns impression profiles list for the given link in the mailing
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Returns impression profiles list for the given link in the mailing
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'link_id' => 0, // int (required)
'attribute_names' => '', // tns:ArrayOfString (required)
];
$result = $client->getLinkClickProfiles($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getLinkClickProfiles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<link_id>0</link_id> <!-- int, required -->
<attribute_names></attribute_names> <!-- tns:ArrayOfString, required -->
</tns:getLinkClickProfiles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getLinkClickProfiles"
Authorization: Basic {base64(username:password)}
Reads the configuration of the specified mailing
Rückgabewert
| Feld | Typ |
|---|---|
| external_trackingcode | string |
| campaign_id | string |
| externalxml_url | string |
| salutation_female | string |
| salutation_male | string |
| salutation_company | string |
| salutation_family | string |
| salutation_other | string |
| salutation_divers | string |
| sender_email | string |
| sender_name | string |
| reply_name | string |
| reply_email | string |
| grant_url | string |
| revoke_url | string |
| revoke_tracking_redirect_url | string |
| grant_tracking_redirect_url | string |
| revoke_confirmation_url | string |
| revoke_confirmation_active | boolean |
| inputfield_0 | string |
| inputfield_1 | string |
| inputfield_2 | string |
| inputfield_3 | string |
| inputfield_4 | string |
| inputfield_5 | string |
| inputfield_6 | string |
| inputfield_7 | string |
| inputfield_8 | string |
| inputfield_9 | string |
| textarea_0 | string |
| textarea_1 | string |
| textarea_2 | string |
| textarea_3 | string |
| textarea_4 | string |
| textarea_5 | string |
| textarea_6 | string |
| textarea_7 | string |
| textarea_8 | string |
| textarea_9 | string |
| htmlarea_0 | string |
| htmlarea_1 | string |
| htmlarea_2 | string |
| htmlarea_3 | string |
| htmlarea_4 | string |
| htmlarea_5 | string |
| htmlarea_6 | string |
| htmlarea_7 | string |
| htmlarea_8 | string |
| htmlarea_9 | string |
| macro_library | string |
PHP Implementierung anzeigen
<?php
/**
* Reads the configuration of the specified mailing
* Service: mailing
* @return EvalancheMailingConfiguration
* Felder:
* - external_trackingcode (string)
* - campaign_id (string)
* - externalxml_url (string)
* - salutation_female (string)
* - salutation_male (string)
* - salutation_company (string)
* - salutation_family (string)
* - salutation_other (string)
* - salutation_divers (string)
* - sender_email (string)
* - sender_name (string)
* - reply_name (string)
* - reply_email (string)
* - grant_url (string)
* - revoke_url (string)
* - revoke_tracking_redirect_url (string)
* - grant_tracking_redirect_url (string)
* - revoke_confirmation_url (string)
* - revoke_confirmation_active (boolean)
* - inputfield_0 (string)
* - inputfield_1 (string)
* - inputfield_2 (string)
* - inputfield_3 (string)
* - inputfield_4 (string)
* - inputfield_5 (string)
* - inputfield_6 (string)
* - inputfield_7 (string)
* - inputfield_8 (string)
* - inputfield_9 (string)
* - textarea_0 (string)
* - textarea_1 (string)
* - textarea_2 (string)
* - textarea_3 (string)
* - textarea_4 (string)
* - textarea_5 (string)
* - textarea_6 (string)
* - textarea_7 (string)
* - textarea_8 (string)
* - textarea_9 (string)
* - htmlarea_0 (string)
* - htmlarea_1 (string)
* - htmlarea_2 (string)
* - htmlarea_3 (string)
* - htmlarea_4 (string)
* - htmlarea_5 (string)
* - htmlarea_6 (string)
* - htmlarea_7 (string)
* - htmlarea_8 (string)
* - htmlarea_9 (string)
* - macro_library (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
];
$result = $client->getConfiguration($params);
// Rückgabewert: EvalancheMailingConfiguration
// $result->external_trackingcode (string)
// $result->campaign_id (string)
// $result->externalxml_url (string)
// $result->salutation_female (string)
// $result->salutation_male (string)
// $result->salutation_company (string)
// $result->salutation_family (string)
// $result->salutation_other (string)
// $result->salutation_divers (string)
// $result->sender_email (string)
// $result->sender_name (string)
// $result->reply_name (string)
// $result->reply_email (string)
// $result->grant_url (string)
// $result->revoke_url (string)
// $result->revoke_tracking_redirect_url (string)
// $result->grant_tracking_redirect_url (string)
// $result->revoke_confirmation_url (string)
// $result->revoke_confirmation_active (boolean)
// $result->inputfield_0 (string)
// $result->inputfield_1 (string)
// $result->inputfield_2 (string)
// $result->inputfield_3 (string)
// $result->inputfield_4 (string)
// $result->inputfield_5 (string)
// $result->inputfield_6 (string)
// $result->inputfield_7 (string)
// $result->inputfield_8 (string)
// $result->inputfield_9 (string)
// $result->textarea_0 (string)
// $result->textarea_1 (string)
// $result->textarea_2 (string)
// $result->textarea_3 (string)
// $result->textarea_4 (string)
// $result->textarea_5 (string)
// $result->textarea_6 (string)
// $result->textarea_7 (string)
// $result->textarea_8 (string)
// $result->textarea_9 (string)
// $result->htmlarea_0 (string)
// $result->htmlarea_1 (string)
// $result->htmlarea_2 (string)
// $result->htmlarea_3 (string)
// $result->htmlarea_4 (string)
// $result->htmlarea_5 (string)
// $result->htmlarea_6 (string)
// $result->htmlarea_7 (string)
// $result->htmlarea_8 (string)
// $result->htmlarea_9 (string)
// $result->macro_library (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getConfiguration xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
</tns:getConfiguration>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getConfiguration"
Authorization: Basic {base64(username:password)}
Sets the configuration for the specified mailing
Rückgabewert
| Feld | Typ |
|---|---|
| external_trackingcode | string |
| campaign_id | string |
| externalxml_url | string |
| salutation_female | string |
| salutation_male | string |
| salutation_company | string |
| salutation_family | string |
| salutation_other | string |
| salutation_divers | string |
| sender_email | string |
| sender_name | string |
| reply_name | string |
| reply_email | string |
| grant_url | string |
| revoke_url | string |
| revoke_tracking_redirect_url | string |
| grant_tracking_redirect_url | string |
| revoke_confirmation_url | string |
| revoke_confirmation_active | boolean |
| inputfield_0 | string |
| inputfield_1 | string |
| inputfield_2 | string |
| inputfield_3 | string |
| inputfield_4 | string |
| inputfield_5 | string |
| inputfield_6 | string |
| inputfield_7 | string |
| inputfield_8 | string |
| inputfield_9 | string |
| textarea_0 | string |
| textarea_1 | string |
| textarea_2 | string |
| textarea_3 | string |
| textarea_4 | string |
| textarea_5 | string |
| textarea_6 | string |
| textarea_7 | string |
| textarea_8 | string |
| textarea_9 | string |
| htmlarea_0 | string |
| htmlarea_1 | string |
| htmlarea_2 | string |
| htmlarea_3 | string |
| htmlarea_4 | string |
| htmlarea_5 | string |
| htmlarea_6 | string |
| htmlarea_7 | string |
| htmlarea_8 | string |
| htmlarea_9 | string |
| macro_library | string |
PHP Implementierung anzeigen
<?php
/**
* Sets the configuration for the specified mailing
* Service: mailing
* @return EvalancheMailingConfiguration
* Felder:
* - external_trackingcode (string)
* - campaign_id (string)
* - externalxml_url (string)
* - salutation_female (string)
* - salutation_male (string)
* - salutation_company (string)
* - salutation_family (string)
* - salutation_other (string)
* - salutation_divers (string)
* - sender_email (string)
* - sender_name (string)
* - reply_name (string)
* - reply_email (string)
* - grant_url (string)
* - revoke_url (string)
* - revoke_tracking_redirect_url (string)
* - grant_tracking_redirect_url (string)
* - revoke_confirmation_url (string)
* - revoke_confirmation_active (boolean)
* - inputfield_0 (string)
* - inputfield_1 (string)
* - inputfield_2 (string)
* - inputfield_3 (string)
* - inputfield_4 (string)
* - inputfield_5 (string)
* - inputfield_6 (string)
* - inputfield_7 (string)
* - inputfield_8 (string)
* - inputfield_9 (string)
* - textarea_0 (string)
* - textarea_1 (string)
* - textarea_2 (string)
* - textarea_3 (string)
* - textarea_4 (string)
* - textarea_5 (string)
* - textarea_6 (string)
* - textarea_7 (string)
* - textarea_8 (string)
* - textarea_9 (string)
* - htmlarea_0 (string)
* - htmlarea_1 (string)
* - htmlarea_2 (string)
* - htmlarea_3 (string)
* - htmlarea_4 (string)
* - htmlarea_5 (string)
* - htmlarea_6 (string)
* - htmlarea_7 (string)
* - htmlarea_8 (string)
* - htmlarea_9 (string)
* - macro_library (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'configuration' => '', // tns:EvalancheMailingConfiguration (required)
'overwrite' => true, // boolean
];
$result = $client->setConfiguration($params);
// Rückgabewert: EvalancheMailingConfiguration
// $result->external_trackingcode (string)
// $result->campaign_id (string)
// $result->externalxml_url (string)
// $result->salutation_female (string)
// $result->salutation_male (string)
// $result->salutation_company (string)
// $result->salutation_family (string)
// $result->salutation_other (string)
// $result->salutation_divers (string)
// $result->sender_email (string)
// $result->sender_name (string)
// $result->reply_name (string)
// $result->reply_email (string)
// $result->grant_url (string)
// $result->revoke_url (string)
// $result->revoke_tracking_redirect_url (string)
// $result->grant_tracking_redirect_url (string)
// $result->revoke_confirmation_url (string)
// $result->revoke_confirmation_active (boolean)
// $result->inputfield_0 (string)
// $result->inputfield_1 (string)
// $result->inputfield_2 (string)
// $result->inputfield_3 (string)
// $result->inputfield_4 (string)
// $result->inputfield_5 (string)
// $result->inputfield_6 (string)
// $result->inputfield_7 (string)
// $result->inputfield_8 (string)
// $result->inputfield_9 (string)
// $result->textarea_0 (string)
// $result->textarea_1 (string)
// $result->textarea_2 (string)
// $result->textarea_3 (string)
// $result->textarea_4 (string)
// $result->textarea_5 (string)
// $result->textarea_6 (string)
// $result->textarea_7 (string)
// $result->textarea_8 (string)
// $result->textarea_9 (string)
// $result->htmlarea_0 (string)
// $result->htmlarea_1 (string)
// $result->htmlarea_2 (string)
// $result->htmlarea_3 (string)
// $result->htmlarea_4 (string)
// $result->htmlarea_5 (string)
// $result->htmlarea_6 (string)
// $result->htmlarea_7 (string)
// $result->htmlarea_8 (string)
// $result->htmlarea_9 (string)
// $result->macro_library (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:setConfiguration xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<configuration></configuration> <!-- tns:EvalancheMailingConfiguration, required -->
<overwrite>true</overwrite> <!-- boolean, optional -->
</tns:setConfiguration>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#setConfiguration"
Authorization: Basic {base64(username:password)}
Get the mailing references within a mailing
Rückgabewert
| Feld | Typ |
|---|---|
| item | MailingArticle |
PHP Implementierung anzeigen
<?php
/**
* Get the mailing references within a mailing
* Service: mailing
* @return ArrayOfMailingArticle
* Felder:
* - item (MailingArticle)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
];
$result = $client->getArticles($params);
// Rückgabewert: ArrayOfMailingArticle
// $result->item (MailingArticle)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getArticles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
</tns:getArticles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getArticles"
Authorization: Basic {base64(username:password)}
Remove all article references from a mailing
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Remove all article references from a mailing
* Service: mailing
* @return boolean
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
];
$result = $client->removeAllArticles($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:removeAllArticles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
</tns:removeAllArticles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#removeAllArticles"
Authorization: Basic {base64(username:password)}
Remove article references from a mailing
Rückgabewert
| Feld | Typ |
|---|---|
| item | MailingArticle |
PHP Implementierung anzeigen
<?php
/**
* Remove article references from a mailing
* Service: mailing
* @return ArrayOfMailingArticle
* Felder:
* - item (MailingArticle)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'reference_ids' => '', // tns:ArrayOfInt
];
$result = $client->removeArticles($params);
// Rückgabewert: ArrayOfMailingArticle
// $result->item (MailingArticle)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:removeArticles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<reference_ids></reference_ids> <!-- tns:ArrayOfInt, optional -->
</tns:removeArticles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#removeArticles"
Authorization: Basic {base64(username:password)}
addArticles
Rückgabewert
| Feld | Typ |
|---|---|
| item | MailingArticle |
PHP Implementierung anzeigen
<?php
/**
* addArticles
* Service: mailing
* @return ArrayOfMailingArticle
* Felder:
* - item (MailingArticle)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
'articles' => '', // tns:ArrayOfMailingArticle (required)
];
$result = $client->addArticles($params);
// Rückgabewert: ArrayOfMailingArticle
// $result->item (MailingArticle)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:addArticles xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
<articles></articles> <!-- tns:ArrayOfMailingArticle, required -->
</tns:addArticles>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#addArticles"
Authorization: Basic {base64(username:password)}
getArticleStatistics
Rückgabewert
| Feld | Typ |
|---|---|
| item | ArticleStats |
PHP Implementierung anzeigen
<?php
/**
* getArticleStatistics
* Service: mailing
* @return ArrayOfArticleStats
* Felder:
* - item (ArticleStats)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
];
$result = $client->getArticleStatistics($params);
// Rückgabewert: ArrayOfArticleStats
// $result->item (ArticleStats)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getArticleStatistics xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
</tns:getArticleStatistics>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getArticleStatistics"
Authorization: Basic {base64(username:password)}
getClientStatistics
Rückgabewert
| Feld | Typ |
|---|---|
| mail_clients | ArrayOfMailclientStatisticsItem |
| browsers | ArrayOfBrowserStatisticsItem |
| devices | ArrayOfDeviceStatisticsItem |
PHP Implementierung anzeigen
<?php
/**
* getClientStatistics
* Service: mailing
* @return ClientStatistics
* Felder:
* - mail_clients (ArrayOfMailclientStatisticsItem)
* - browsers (ArrayOfBrowserStatisticsItem)
* - devices (ArrayOfDeviceStatisticsItem)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mailing_id' => 0, // int (required)
];
$result = $client->getClientStatistics($params);
// Rückgabewert: ClientStatistics
// $result->mail_clients (ArrayOfMailclientStatisticsItem)
// $result->browsers (ArrayOfBrowserStatisticsItem)
// $result->devices (ArrayOfDeviceStatisticsItem)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getClientStatistics xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mailing_id>0</mailing_id> <!-- int, required -->
</tns:getClientStatistics>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getClientStatistics"
Authorization: Basic {base64(username:password)}
Get all resources within this namespace with the given resource type id (see method getTypeIds)
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheMailingInformation |
PHP Implementierung anzeigen
<?php
/**
* Get all resources within this namespace with the given resource type id (see method getTypeIds)
* Service: mailing
* @return ArrayOfEvalancheMailingInformation
* Felder:
* - item (EvalancheMailingInformation)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'type_id' => 0, // int (required)
'mandator_id' => 0, // int
];
$result = $client->getByTypeId($params);
// Rückgabewert: ArrayOfEvalancheMailingInformation
// $result->item (EvalancheMailingInformation)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getByTypeId xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<type_id>0</type_id> <!-- int, required -->
<mandator_id>0</mandator_id> <!-- int, optional -->
</tns:getByTypeId>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getByTypeId"
Authorization: Basic {base64(username:password)}
Test if the API is available and used credentials are valid. The result's property `random_message` has absolutely *no* relevance as the values are randomly taken from http://whatthecommit.com
Rückgabewert
| Feld | Typ |
|---|---|
| status | string |
| random_message | string |
PHP Implementierung anzeigen
<?php
/**
* Test if the API is available and used credentials are valid. The result's property `random_message` has absolutely *no* relevance as the values are randomly taken from http://whatthecommit.com
* Service: mailing
* @return IsAliveResult
* Felder:
* - status (string)
* - random_message (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'isAliveResult' => '', // tns:IsAliveResult (required)
];
$result = $client->isAlive($params);
// Rückgabewert: IsAliveResult
// $result->status (string)
// $result->random_message (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:isAlive xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<isAliveResult></isAliveResult> <!-- tns:IsAliveResult, required -->
</tns:isAlive>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#isAlive"
Authorization: Basic {base64(username:password)}
Get information about the namespace's resource type ids
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheResourceTypeInformation |
PHP Implementierung anzeigen
<?php
/**
* Get information about the namespace's resource type ids
* Service: mailing
* @return ArrayOfEvalancheResourceTypeInformation
* Felder:
* - item (EvalancheResourceTypeInformation)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'item' => '', // tns:EvalancheResourceTypeInformation (required)
];
$result = $client->getTypeIds($params);
// Rückgabewert: ArrayOfEvalancheResourceTypeInformation
// $result->item (EvalancheResourceTypeInformation)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getTypeIds xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<item></item> <!-- tns:EvalancheResourceTypeInformation, required -->
</tns:getTypeIds>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getTypeIds"
Authorization: Basic {base64(username:password)}
Get resource information for resource with id $resource_id
Rückgabewert
| Feld | Typ |
|---|---|
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Get resource information for resource with id $resource_id
* Service: mailing
* @return EvalancheResourceInformation
* Felder:
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
];
$result = $client->getById($params);
// Rückgabewert: EvalancheResourceInformation
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getById xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
</tns:getById>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getById"
Authorization: Basic {base64(username:password)}
Get resources by category id
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheResourceInformation |
PHP Implementierung anzeigen
<?php
/**
* Get resources by category id
* Service: mailing
* @return ArrayOfEvalancheResourceInformation
* Felder:
* - item (EvalancheResourceInformation)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'category_id' => 0, // int (required)
];
$result = $client->getByCategory($params);
// Rückgabewert: ArrayOfEvalancheResourceInformation
// $result->item (EvalancheResourceInformation)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getByCategory xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<category_id>0</category_id> <!-- int, required -->
</tns:getByCategory>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getByCategory"
Authorization: Basic {base64(username:password)}
Get all resources of this namespace's type
Rückgabewert
| Feld | Typ |
|---|---|
| item | EvalancheResourceInformation |
PHP Implementierung anzeigen
<?php
/**
* Get all resources of this namespace's type
* Service: mailing
* @return ArrayOfEvalancheResourceInformation
* Felder:
* - item (EvalancheResourceInformation)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'mandator_id' => 0, // int
];
$result = $client->getAll($params);
// Rückgabewert: ArrayOfEvalancheResourceInformation
// $result->item (EvalancheResourceInformation)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getAll xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<mandator_id>0</mandator_id> <!-- int, optional -->
</tns:getAll>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getAll"
Authorization: Basic {base64(username:password)}
Get information about this namespace's default category
Rückgabewert
| Feld | Typ |
|---|---|
| id | int |
| name | string |
| parent_id | int |
PHP Implementierung anzeigen
<?php
/**
* Get information about this namespace's default category
* Service: mailing
* @return EvalancheCategoryInformation
* Felder:
* - id (int)
* - name (string)
* - parent_id (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'customer_id' => 0, // int
];
$result = $client->getResourceDefaultCategory($params);
// Rückgabewert: EvalancheCategoryInformation
// $result->id (int)
// $result->name (string)
// $result->parent_id (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getResourceDefaultCategory xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<customer_id>0</customer_id> <!-- int, optional -->
</tns:getResourceDefaultCategory>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getResourceDefaultCategory"
Authorization: Basic {base64(username:password)}
Get resource information for resource by external id
Rückgabewert
| Feld | Typ |
|---|---|
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Get resource information for resource by external id
* Service: mailing
* @return EvalancheResourceInformation
* Felder:
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'external_id' => '', // string (required)
];
$result = $client->getByExternalId($params);
// Rückgabewert: EvalancheResourceInformation
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getByExternalId xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<external_id></external_id> <!-- string, required -->
</tns:getByExternalId>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getByExternalId"
Authorization: Basic {base64(username:password)}
Creates a copy of the resource specified by the $resource_id
Rückgabewert
| Feld | Typ |
|---|---|
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Creates a copy of the resource specified by the $resource_id
* Service: mailing
* @return EvalancheResourceInformation
* Felder:
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
'category_id' => 0, // int
];
$result = $client->copy($params);
// Rückgabewert: EvalancheResourceInformation
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:copy xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
<category_id>0</category_id> <!-- int, optional -->
</tns:copy>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#copy"
Authorization: Basic {base64(username:password)}
Moves the resource specified by the $resource_id to another category
Rückgabewert
| Feld | Typ |
|---|---|
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Moves the resource specified by the $resource_id to another category
* Service: mailing
* @return EvalancheResourceInformation
* Felder:
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
'category_id' => 0, // int (required)
];
$result = $client->move($params);
// Rückgabewert: EvalancheResourceInformation
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:move xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
<category_id>0</category_id> <!-- int, required -->
</tns:move>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#move"
Authorization: Basic {base64(username:password)}
Deletes the resource
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Deletes the resource
* Service: mailing
* @return boolean
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
];
$result = $client->delete($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:delete xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
</tns:delete>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#delete"
Authorization: Basic {base64(username:password)}
Renames the resource
Rückgabewert
| Feld | Typ |
|---|---|
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Renames the resource
* Service: mailing
* @return EvalancheResourceInformation
* Felder:
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
'name' => '', // string (required)
];
$result = $client->rename($params);
// Rückgabewert: EvalancheResourceInformation
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:rename xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
<name></name> <!-- string, required -->
</tns:rename>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#rename"
Authorization: Basic {base64(username:password)}
Get information about a running background job
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Get information about a running background job
* Service: mailing
* @return EvalancheJobHandle
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'job_id' => '', // string (required)
];
$result = $client->getJobInformation($params);
// Rückgabewert: EvalancheJobHandle
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getJobInformation xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<job_id></job_id> <!-- string, required -->
</tns:getJobInformation>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getJobInformation"
Authorization: Basic {base64(username:password)}
Get result chunks from a finished background job
Rückgabewert
| Feld | Typ |
|---|---|
| result | ArrayOfEvalancheHashMap |
| chunks_left | int |
| result_size | int |
| id | string |
| status | int |
| status_description | string |
| namespace | string |
| method | string |
| resource_id | int |
| result_chunks | int |
PHP Implementierung anzeigen
<?php
/**
* Get result chunks from a finished background job
* Service: mailing
* @return EvalancheJobResult2
* Felder:
* - result (ArrayOfEvalancheHashMap)
* - chunks_left (int)
* - result_size (int)
* - id (string)
* - status (int)
* - status_description (string)
* - namespace (string)
* - method (string)
* - resource_id (int)
* - result_chunks (int)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'job_id' => '', // string (required)
];
$result = $client->getResults($params);
// Rückgabewert: EvalancheJobResult2
// $result->result (ArrayOfEvalancheHashMap)
// $result->chunks_left (int)
// $result->result_size (int)
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
// $result->namespace (string)
// $result->method (string)
// $result->resource_id (int)
// $result->result_chunks (int)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getResults xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<job_id></job_id> <!-- string, required -->
</tns:getResults>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getResults"
Authorization: Basic {base64(username:password)}
Sets the cursor for the result set returned by the next call to getResults
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Sets the cursor for the result set returned by the next call to getResults
* Service: mailing
* @return boolean
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'job_id' => '', // string (required)
'cursor' => 0, // int (required)
];
$result = $client->setResultCursor($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:setResultCursor xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<job_id></job_id> <!-- string, required -->
<cursor>0</cursor> <!-- int, required -->
</tns:setResultCursor>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#setResultCursor"
Authorization: Basic {base64(username:password)}
Returns the cursor for the current result set
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Returns the cursor for the current result set
* Service: mailing
* @return string
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'job_id' => '', // string (required)
];
$result = $client->getResultCursor($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getResultCursor xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<job_id></job_id> <!-- string, required -->
</tns:getResultCursor>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getResultCursor"
Authorization: Basic {base64(username:password)}
Returns the objects content container data
Rückgabewert
| Feld | Typ |
|---|---|
| items | ArrayOfEvalancheHashMapItem |
PHP Implementierung anzeigen
<?php
/**
* Returns the objects content container data
* Service: mailing
* @return EvalancheHashMap
* Felder:
* - items (ArrayOfEvalancheHashMapItem)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
];
$result = $client->getContentContainerData($params);
// Rückgabewert: EvalancheHashMap
// $result->items (ArrayOfEvalancheHashMapItem)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getContentContainerData xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
</tns:getContentContainerData>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getContentContainerData"
Authorization: Basic {base64(username:password)}
Updates an objects content container
Rückgabewert
| Feld | Typ |
|---|---|
| url | string |
| type_id | int |
| category_id | int |
| customer_id | int |
| last_modified | int |
| id | int |
| name | string |
PHP Implementierung anzeigen
<?php
/**
* Updates an objects content container
* Service: mailing
* @return EvalancheResourceInformation
* Felder:
* - url (string)
* - type_id (int)
* - category_id (int)
* - customer_id (int)
* - last_modified (int)
* - id (int)
* - name (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
'data' => '', // tns:EvalancheHashMap (required)
];
$result = $client->setContentContainerData($params);
// Rückgabewert: EvalancheResourceInformation
// $result->url (string)
// $result->type_id (int)
// $result->category_id (int)
// $result->customer_id (int)
// $result->last_modified (int)
// $result->id (int)
// $result->name (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:setContentContainerData xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
<data></data> <!-- tns:EvalancheHashMap, required -->
</tns:setContentContainerData>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#setContentContainerData"
Authorization: Basic {base64(username:password)}
Runs content-generation on supported resources
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
PHP Implementierung anzeigen
<?php
/**
* Runs content-generation on supported resources
* Service: mailing
* @return EvalancheJobState
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
'variables' => '', // tns:EvalancheHashMap (required)
];
$result = $client->runContentGeneration($params);
// Rückgabewert: EvalancheJobState
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:runContentGeneration xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
<variables></variables> <!-- tns:EvalancheHashMap, required -->
</tns:runContentGeneration>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#runContentGeneration"
Authorization: Basic {base64(username:password)}
Retrieves the state of a generic background-job
Rückgabewert
| Feld | Typ |
|---|---|
| id | string |
| status | int |
| status_description | string |
PHP Implementierung anzeigen
<?php
/**
* Retrieves the state of a generic background-job
* Service: mailing
* @return EvalancheJobState
* Felder:
* - id (string)
* - status (int)
* - status_description (string)
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'job_id' => '', // string (required)
];
$result = $client->getJobState($params);
// Rückgabewert: EvalancheJobState
// $result->id (string)
// $result->status (int)
// $result->status_description (string)
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:getJobState xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<job_id></job_id> <!-- string, required -->
</tns:getJobState>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#getJobState"
Authorization: Basic {base64(username:password)}
Updates the module-types storage
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Updates the module-types storage
* Service: mailing
* @return boolean
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
'module_type_content' => '', // string (required)
];
$result = $client->updateModuleTypes($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:updateModuleTypes xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
<module_type_content></module_type_content> <!-- string, required -->
</tns:updateModuleTypes>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#updateModuleTypes"
Authorization: Basic {base64(username:password)}
Retrieves module-types
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Retrieves module-types
* Service: mailing
* @return string
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
];
$result = $client->retrieveModuleTypes($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:retrieveModuleTypes xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
</tns:retrieveModuleTypes>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#retrieveModuleTypes"
Authorization: Basic {base64(username:password)}
Updates module configuration
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Updates module configuration
* Service: mailing
* @return boolean
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
'module_content' => '', // string (required)
];
$result = $client->updateModuleConfiguration($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:updateModuleConfiguration xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
<module_content></module_content> <!-- string, required -->
</tns:updateModuleConfiguration>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#updateModuleConfiguration"
Authorization: Basic {base64(username:password)}
Retrieves module configurations
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Retrieves module configurations
* Service: mailing
* @return string
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
];
$result = $client->retrieveModuleConfiguration($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:retrieveModuleConfiguration xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
</tns:retrieveModuleConfiguration>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#retrieveModuleConfiguration"
Authorization: Basic {base64(username:password)}
Updates global module configuration
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Updates global module configuration
* Service: mailing
* @return boolean
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
'global_module_content' => '', // string (required)
];
$result = $client->updateGlobalModuleConfiguration($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:updateGlobalModuleConfiguration xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
<global_module_content></global_module_content> <!-- string, required -->
</tns:updateGlobalModuleConfiguration>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#updateGlobalModuleConfiguration"
Authorization: Basic {base64(username:password)}
Retrieves global module configurations
Rückgabewert
PHP Implementierung anzeigen
<?php
/**
* Retrieves global module configurations
* Service: mailing
* @return string
*/
$wsdlUrl = 'https://scnem.com/soap.php/wsdl/mailing';
$username = 'DEIN_USERNAME';
$password = 'DEIN_PASSWORD';
$options = [
'login' => $username,
'password' => $password,
'trace' => true,
'exceptions' => true,
];
try {
$client = new SoapClient($wsdlUrl, $options);
// Parameter
$params = [
'resource_id' => 0, // int (required)
];
$result = $client->retrieveGlobalModuleConfiguration($params);
print_r($result);
} catch (SoapFault $e) {
echo 'SOAP Fehler: ' . $e->getMessage();
}
XML SOAP Request anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:retrieveGlobalModuleConfiguration xmlns:tns="https://scnem.com/soap.php/wsdl/mailing">
<resource_id>0</resource_id> <!-- int, required -->
</tns:retrieveGlobalModuleConfiguration>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
HTTP Header:
Content-Type: text/xml; charset=utf-8
SOAPAction: "https://scnem.com/soap.php/wsdl/mailing#retrieveGlobalModuleConfiguration"
Authorization: Basic {base64(username:password)}