getEmailEndpoint

セッション ID に基づいて、通知用の E メール・エンドポイントを取得します。

統合アプライアンス のみに適用されます。

戻り:
E メール・エンドポイント。

例:

以下の例は、E メール・エンドポイントを取得するための SOAP 要求です。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:log="http://www.approuter.com/schemas/2008/1/lognotif">
 <soapenv:Header>
  <log:sessionId>910D9A7B441C97AC2FCC54E3F1274AA7</log:sessionId>
 </soapenv:Header>
 <soapenv:Body>
  <log:getEmailEndpoint/>
 </soapenv:Body>
</soapenv:Envelope>
以下は、要求に対する SOAP 応答の例です。
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
 <S:Body>
  <ns2:getEmailEndpointResponse xmlns:ns2="http://www.approuter.com/
  schemas/2008/1/lognotif" xmlns:ns3="http://www.approuter.com/schemas/2008/1/
  lognotif/types">
   <ns2:emailEndpoint>
    <ns3:active>true</ns3:active>
     <ns3:credentials>
      <ns3:password>test</ns3:password>
      <ns3:user>test</ns3:user>
     </ns3:credentials>
    <ns3:host>hq-exch-01</ns3:host>
    <ns3:port>123</ns3:port>
    <ns3:sender>user@mydomain.com</ns3:sender>
    <ns3:subject>Notification</ns3:subject>
   </ns2:emailEndpoint>
  </ns2:getEmailEndpointResponse>
 </S:Body>
</S:Envelope>