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.
1 parent e80c22d commit 1157e1aCopy full SHA for 1157e1a
README.md
@@ -52,11 +52,14 @@ app_conf = {
52
connection.create_app("app_name", app_conf)
53
54
# create device group
55
-# TODO - add example of create a device_group
+device_group_config = {"apps": ["app_name"]}
56
+connection.create_device_group("device_group_name", device_group_config)
57
-# list device group info
58
-# TODO - add example of listing a device group info
+# list device group
59
+connection.list_device_group("device_group_name")
60
61
+# list device group info
62
+connection.list_device_group_info("device_group_name")
63
64
```
65
0 commit comments