Audit Bank Methods

Method Description
addSearchAuditToBank Adds an audit search to the bank.

The user calling this method must have HelpDeskRight or be a super administrator.

updateSearchAuditInBank Updates an audit search from the bank.

The user calling this method must have HelpDeskRight or be a super administrator.

deleteSearchAuditFromBank Deletes an audit search from the bank.

The user calling this method must have HelpDeskRight or be a super administrator.

getSearchAuditFromBank Gets the specified audit search from the bank.

If audit does not exist, an exception is thrown.

The user calling this method must have HelpDeskRight or be a super administrator.

retrieveAllSearchAuditsFromBank Gets all the configured audit searches from the bank as an array of SearchAudits.

The last element of the array is null. If no audit searches are found, an array of one element is returned with a value of null.

The user calling this method must have HelpDeskRight or be a super administrator.

searchAuditInServer Retrieves all audit records in which the server ID matches server in the audit record, and returns an array of AuditBase objects.

The last element of the array is null. If no audits are found, an array of one element is returned with a value of null. This method returns 100 audits at a time, you must keep track of the last audit ID returned and the last auditFT ID returned if you want to get the next 100 audits. The first time you call this method, pass an empty string for lastAuditId and lastAuditFTId.

If you do not want Internet Server audit records, set lastAuditId to null. If you do not want Platform Server audit records, set lastAuditFTId to null.

The user calling this method must have ViewAuditRight, AdministratorRight, or HelpDeskRight.