Removing User Account

Use the del operation to remove user accounts.

In this chapter:

Request Packet Structure

Response Packet Structure

Samples

 

Request Packet Structure

A request XML packet removing user accounts includes the del operation node:

<packet version="1.6.3.0">
<user>
   <del>
   ...
   </del>
</user>
</packet>

 

The del node is nested within the UserGetInput type (user.xsd). This node has the following graphics representation:

user-del-rps.gif

 

Response Packet Structure

The del node of the response packet is structured as follows:

user-set-reps.gif

 

Samples

A request packet can look as follows:

<packet version="1.6.3.0">
<user>
<del>
   <filter>
      <guid>8712cd03-14e2-9e16-95af-c67e3ffc2696</guid>
   </filter>
</del>
</user>
</packet>

Request:

<packet version="1.6.3.0">
  <user>
    <del>
      <result>
        <status>ok</status>
        <filter-id>8712cd03-14e2-9e16-95af-c67e3ffc2696</filter-id>
        <id>21</id>
      </result>
    </del>
  </user>
</packet>