DeleteUser
Deletes users. To delete a single user, specify Name or Id. To delete several users, specify NameList or IdList. To delete users that match the specified conditions, specify Search.
Request schema
<xsd:complexType name="DeleteUser">
<xsd:sequence>
<xsd:choice>
<xsd:element name="Search" type="typens:UserSearch"/>
<xsd:element name="IdList" type="typens:ArrayOfString"/>
<xsd:element name="NameList" type="typens:ArrayOfString"/>
<xsd:element name="Id" type="xsd:string"/>
<xsd:element name="Name" type="xsd:string"/>
</xsd:choice>
<xsd:element name="IgnoreMissing" type="xsd:boolean"
minOccurs="0"/>
<xsd:element name="PurgeUserInfo" type="xsd:boolean"
minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
Request elements
Search
The search condition that specifies which users to delete.
IdList
The list of user IDs to delete. Specify either IdList or NameList.
NameList
The list of user names to delete. Specify either NameList or IdList.
Id
The ID of the single user to delete. Specify either Id or the Name.
Name
The name of the single user to delete. Specify either Name or Id.
IgnoreMissing
Specifies what to do if the specified user does not exist. If True, BIRT iHub ignores the request. If False, the operation reports an error and stops. The default value is True.
PurgeUserInfo
Purges user information from the system.