Folgende weitere SOAP-Methoden werden zum arbeiten mit sonstigen Evalanche-Strukturen bereitgestellt.
getById
Informationen anhand der Mandanten Id auslesen
EvalancheMandator getById(int mandator_id)
Details
Parameter
- int mandator_id: Id des Mandanten
Rückgabewert
- EvalancheMandator: Objekt mit folgenden Attributen:
- id: Id des Mandanten
- name: Name des Mandanten
- domain: Domain des Mandanten
Benötigte Rechte
keine
Verwendung
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://scnem.com/soap.php/soap/mandator">
<soapenv:Header/>
<soapenv:Body>
<man:getById>
<mandator_id>MANDATOR_ID</mandator_id>
</man:getById>
</soapenv:Body>
</soapenv:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://scnem.com/soap.php/soap/mandator">
<SOAP-ENV:Body>
<ns1:getByIdResponse>
<getByIdResult>
<id>MANDATOR_ID</id>
<name>MANDATOR_NAME</name>
<domain>MANDATOR_INTERFACE_DOMAIN</domain>
</getByIdResult>
</ns1:getByIdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
getList
Liste aller Mandaten auslesen
EvalancheMandator[] getList()
Details
Rückgabewert
- EvalancheMandator: Liste von Objekten analog zu Informationen anhand der Mandanten Id auslesen
Benötigte Rechte
keine
Verwendung
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://scnem.com/soap.php/soap/mandator">
<soapenv:Header/>
<soapenv:Body>
<man:getList/>
</soapenv:Body>
</soapenv:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://scnem.com/soap.php/soap/mandator">
<SOAP-ENV:Body>
<ns1:getListResponse>
<getListResult>
<item>
<id>MANDATOR_ID</id>
<name>MANDATOR_NAME</name>
<domain>MANDATOR_INTERFACE_DOMAIN</domain>
</item>
[...]
</getListResult>
</ns1:getListResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>