Folgende SOAP-Methoden werden speziell für die Anlage und Anpassung von Artikel-Vorlagen bereitgestellt.
create
Artikel-Vorlage anlegen
EvalancheResourceInformation create (string title, int type_id, string template, int folder_id)
Details
Parameter
- string title: Name der Artikel-Vorlage
- int type_id: Typ der Artikel-Vorlage (33=Email; 34=Text; 35=PDF; 36=Web/Mobile)
- string template: Inhalt des Templates
- int folder_id: ID des Ordners, in dem die Vorlage erstellt werden soll
Rückgabewert
- EvalancheResourceInformation: Objekt analog zur Methode getById (Informationen über ein Objekt mittels Objekt Id abfragen)
Benötigte Rechte
Artikel-Vorlage erzeugen
Verwendung
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:art="https://scnem.com/soap.php/soap/articletemplate">
<soapenv:Header/>
<soapenv:Body>
<art:create>
<title>TEMPLATE_NAME</title>
<type_id>33</type_id>
<template>CONTENT</template>
<folder_id>FOLDER_ID</folder_id>
</art:create>
</soapenv:Body>
</soapenv:Envelope></soapenv:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://scnem.com/soap.php/soap/articletemplate">
<SOAP-ENV:Body>
<ns1:createResponse>
<createResult>
<url>https://scnem.com/art_resource.php?sid=eiu5m.5h4adj</url>
<type_id>33</type_id>
<category_id>FOLDER_ID</category_id>
<customer_id>MANDATOR_ID</customer_id>
<id>TEMPLATE_ID</id>
<name>TEMPLATE_NAME</name>
</createResult>
</ns1:createResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope></SOAP-ENV:Envelope>
updateTemplate
Artikel-Vorlage ändern
EvalancheResourceInformation updateTemplate (int template_id, string template)
Details
Parameter
- int template_id: ID der Artikel-Vorlage
- string template: Inhalt des Templates
Rückgabewert
- EvalancheResourceInformation: Objekt analog zur Methode getById (Informationen über ein Objekt mittels Objekt Id abfragen)
Benötigte Rechte
Artikel-Vorlage verändern
Verwendung
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:art="https://scnem.com/soap.php/soap/articletemplate">
<soapenv:Header/>
<soapenv:Body>
<art:updateTemplate>
<template_id>TEMPLATE_ID</template_id>
<template>CONTENT</template>
</art:updateTemplate>
</soapenv:Body>
</soapenv:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://scnem.com/soap.php/soap/articletemplate">
<SOAP-ENV:Body>
<ns1:updateTemplateResponse>
<updateTemplateResult>
<url>TEMPLATE_URL</url>
<type_id>33</type_id>
<category_id>FOLDER_ID</category_id>
<customer_id>MANDATOR_ID</customer_id>
<id>TEMPLATE_ID</id>
<name>TEMPLATE_NAME</name>
</updateTemplateResult>
</ns1:updateTemplateResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope></SOAP-ENV:Envelope>