interface IAuditReasonsClient {
    getAuditReasons(args: {
        repoId: string;
    }): Promise<AuditReasons>;
}

Implemented by

Methods

    • Returns the audit reasons associated with the authenticated user. Inherited audit reasons are included.
    • Only includes audit reasons associated with available API functionalities, like delete entry and export document.
    • If the authenticated user does not have the appropriate Laserfiche feature right, the audit reasons associated with that feature right will not be included.

    Parameters

    • args: {
          repoId: string;
      }
      • repoId: string

        The requested repository ID.

    Returns Promise<AuditReasons>

    Get audit reasons successfully.