1. Get All Watch lists for Super
Usage: getAllWatchLists.py appServer user password
Example: python getAllWatchLists.py 192.168.20.116 super/admin adm1n
2. Get All Watch lists for organization org1
Usage: getAllWatchLists.py appServer user password
Example: python getAllWatchLists.py 192.168.20.116 org1/org1User org1Password
3. Get Watch list count
Usage: getWatchListCount.py appServer user password
python getWatchListCount.py 192.168.20.116 super/admin adm1n
4. Get Watch list by groupId
Usage: getWatchListById.py appServer user password groupId
Example: python getWatchListById.py 192.168.20.116 super/admin adm1n 500547
5. Get Watch list by entryId
Usage: getWatchListByEntryId.py appServer user password entryId
Example: python getWatchListByEntryId.py 192.168.20.116 super/admin adm1n 885257
6. Get Watch list by entryValue
Usage: getWatchListByEntryValue.py appServer user password entryValue
Example: python getWatchListByEntryValue.py 192.168.20.116 super/admin adm1n WIN2008R2-249
7. Get Watch list entry by entryId
Usage: getWatchListEntryByEntryId.py appServer user password entryId
Example: python getWatchListEntryByEntryId.py 192.168.20.116 super/admin adm1n 885257
8. Add Watch list groups
Usage: addWatchListGroup.py appServer user password watchListDefFile
Example: python addWatchListGroup.py 192.168.20.116 super/admin adm1n watchListDefJSON.json
9. Add Watch list entry
Usage: addWatchListEntry.py appServer user password groupId watchListEntryDefFile
Example: python addWatchListEntry.py 192.168.20.116 super/admin adm1n 500547 watchListEntryDefJSON.json
10. Update Watch list state by Id
Usage: updateWatchListStateById.py appServer user password entryId state
Example: python updateWatchListStateById.py 192.168.20.116 super/admin adm1n 885257 true
11. Update Watch list state by value
Usage: updateWatchListStateByValue.py appServer user password groupId value orgId state
Example: python updateWatchListStateByValue.py 192.168.20.116 super/admin adm1n 500547 10.10.10.1 1 false
12. Update Watch list last seen time by Id
Usage: updateLastSeenTimeById.py appServer user password entryId lastSeenTime
Example: python updateLastSeenTimeById.py 192.168.20.116 super/admin adm1n 885254 1626967090000
13. Update Watch list last seen time by value
Usage: updateLastSeenTimeByValue.py appServer user password groupId value orgId lastSeenTime
python updateLastSeenTimeByValue.py 192.168.20.116 super/admin adm1n 500547 10.10.10.1 1 1626967090000
14. Update Watch list count by Id
Usage: updateCountById.py appServer user password entryId count
Example: python updateCountById.py 192.168.20.116 super/admin adm1n 885257 10
Example: python updateCountById.py 192.168.20.116 super/admin adm1n 885257 10
15. Update Watch list count by value
Usage: updateCountByValue.py appServer user password groupId value orgId count
Example: python updateCountByValue.py 192.168.20.116 super/admin adm1n 500547 10.10.10.1 1 10
16. Update Watch list entry by Id
Usage: updateWatchListEntryById.py appServer user password watchListEntryUpdateDefFile
Example: python updateWatchListEntryById.py 192.168.20.116 super/admin adm1n watchListEntryUpdateDefJSON.json
17. Delete Watch list groups
Usage: deleteWatchListGroup.py appServer user password watchListIdsFile
Example: python deleteWatchListGroup.py 192.168.20.116 super/admin adm1n watchListIdsJSON.json
18. Delete Watch list entries
Usage: deleteWatchListEntry.py appServer user password watchListEntryIdsFile
Example: python deleteWatchListEntry.py 192.168.20.116 super/admin adm1n watchListEntryIdsJSON.json