netwrix-api

A library to interact with Netwrix Search API


License
MIT
Install
pip install netwrix-api==0.0.7

Documentation

Netwrix Search API Module

Build Status

This is a python3 library to interact with Netwrix Auditor

pip install netwrix-api

Example:

from netwrix_api import NetwrixAPI


filter_data = {
    "what": {"Contains": "GroupTest"},
    "datasource": "Active Directory",
    "objecttype": {"Contains": "Group"}
}
netwrix_host = "netwrixsv01.contoso.com"
username = "Username"
passwd = "ENTERPASSOWRD"
api = NetwrixAPI(netwrix_host, username, passwd)
results = api.queryDB(filter_data)