listUsers
すべてのユーザーのリストを戻します。
Cloud および 統合アプライアンス に適用されます。
- 戻り:
- すべてのユーザーのリスト。
例:
以下の例は、ユーザーのリストの SOAP 要求です。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:sec="http://www.approuter.com/schemas/2008/1/security">
<soapenv:Header>
<sec:sessionId>8F059BEEA3611033D277773A95404641</sec:sessionId>
</soapenv:Header>
<soapenv:Body>
<sec:listUsers/>
</soapenv:Body>
</soapenv:Envelope>
以下は、ユーザーのリストの要求に対する SOAP 応答の例です。
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:listUsersResponse xmlns:ns2="http://www.approuter.com/
schemas/2008/1/security" xmlns:ns3="http://www.approuter.com/schema/
router/1000/security/03">
<ns2:users>foo@mycompany.com</ns2:users>
<ns2:users>httpclient@mycompany.com</ns2:users>
<ns2:users>admin@mycompany.com</ns2:users>
<ns2:users>webman@mycompany.com</ns2:users>
<ns2:users>support@mycompany.com</ns2:users>
</ns2:listUsersResponse>
</S:Body>
</S:Envelope>