Returns the delete log for the specified criteria.

Syntax

Visual Basic (declaration)
Public Function GetDeleteLog( _ 
ByVal AuthenticationTicket as String, _ ByVal StartDate as DateTime, _ ByVal EndDate as DateTime, _ ByVal PathFilter as String) as XmlNode

C# (declaration)
public XmlNode GetDeleteLog( 
string AuthenticationTicket, DateTime StartDate, DateTime EndDate, string PathFilter)

Parameters

AuthenticationTicket
    string infoRouter ticket
StartDate
    DateTime Filter start date time stamp
EndDate
    DateTime Filter end date time stamp
PathFilter
    string Filter Path

Return Value

returns xml fragment.
<response success="true" error="">
if success = "true", The list of logs has been returned successfully as the sample below.
if success = "false", the error attribute returns the error description.

<response success="true" error="">
  <logs>
    <LOGITEM TYPE="DOCUMENT" NAME="1.jpg" PATH="\Corporate" DATE="2007-04-19 09:54:00" ID="1037" DOMAINID="1000" ACTION="RECYCLE" USERID="4" FULLNAME="System Administrator" />
    <LOGITEM TYPE="DOCUMENT" NAME="FW Scan station(1).email" PATH="\Corporate\emails" DATE="2007-04-19 09:54:38" ID="1042" DOMAINID="1000" ACTION="RECYCLE" USERID="4" FULLNAME="System Administrator" />
    <LOGITEM TYPE="DOCUMENT" NAME="FW Scan station(2).email" PATH="\Corporate\emails" DATE="2007-04-19 09:54:38" ID="1044" DOMAINID="1000" ACTION="RECYCLE" USERID="4" FULLNAME="System Administrator" />
  </logs>
</response>

Remarks

The audit log option must be enabled.