We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6cb152 + 2579a52 commit 3ea08ffCopy full SHA for 3ea08ff
README.md
@@ -53,11 +53,11 @@ api = ZabbixAPI(url="127.0.0.1")
53
api.login(user="User", password="zabbix")
54
55
users = api.user.get(
56
- output=['userid', 'alias']
+ output=['userid','name']
57
)
58
59
for user in users:
60
- print(user['alias'])
+ print(user['name'])
61
62
api.logout()
63
```
@@ -71,11 +71,11 @@ api = ZabbixAPI(url="127.0.0.1")
71
api.login(token="xxxxxxxx")
72
73
74
75
76
77
78
79
80
81
0 commit comments