filterUsers

ユーザーをフィルターに掛けます。

Cloud および 統合アプライアンス に適用されます。

パラメーター:

filter
ユーザーのリストに対して実行するフィルター。
戻り:
ユーザー。

例:

以下の例は、w で始まるユーザーをフィルターに掛けるための 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>A5D2F0294EACB36B70622B8EE0E94706</sec:sessionId>
 </soapenv:Header>
 <soapenv:Body>
  <sec:filterUsers>
   <sec:filter>w</sec:filter>
  </sec:filterUsers>
 </soapenv:Body>
</soapenv:Envelope>
以下は、要求に対する SOAP 応答の例です。
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
 <S:Body>
  <ns2:filterUsersResponse xmlns:ns2="http://www.approuter.com/
  schemas/2008/1/security" xmlns:ns3="http://www.approuter.com/schema/
  router/1000/security/03">
   <ns2:users>webman</ns2:users>
  </ns2:filterUsersResponse>
 </S:Body>
</S:Envelope>