Library Changes
- Added the ability to add tag expiration date using date format (YYYY-MM-DD) or days-from-now (int)
**Full Changelog**: https://github.com/Axonius/axonius_api_client/compare/5.0.13...5.0.14
Example Usage
Axonshell
axonshell -nw devices get --wiz simple "name equals windows" --max-pages 1 --max-rows 1 --tag "A" --tag "B" --tag "C" -exp A=2024-05-05 -exp B=10
API
Python setup.py develop
Axonshell tools shell
- Must have .env file
rows = c.devices.get(wiz_entries=[{'type': 'simple', 'value': 'name equals oz'}], max_pages=1, max_rows=1)
c.devices.labels.add(rows=rows, labels=['A', 'B', 'C'], expirable_tags={'A': '2024-05-05', 'B': 10})
axonshell users saved-query export --uuid "658c57b5ec767a9169bb3351"