You can use REST to manipulate many functions in DX NetOps Portal.
There doesn't appear to be a way to remove a device in a group by it's DeviceID. How can you list all members of a group in the DX NetOps Portal?
Currently supported versions
Yes, there is a method to use REST to add or delete items from a group.
Items being devices/interfaces/etc, NOT subgroups or references to other groups.
Basically a POST or DELETE to
http://<NetOps Portal>:8181/pc/center/webservice/groups/groupItemId/ITEMID/items
(replace ITEMID with the itemid if the device you wish to delete)
...
To see all groups do a GET
http://<NetOps Portal>:8181/pc/center/webservice/groups/groupPath/All%20Groups
+++
curl -kv -u admin -X GET -H 'Content-type: application/xml' http://<NetOps Portal>:8181/pc/center/webservice/groups/groupPath/All%20Groups
+++
From the results you get:
Now to see a single group using the id= from the above GET
http://<NetOps Portal>:8181/pc/center/webservice/groups/groupItemId/6362/
+++
curl -kv -u admin -X GET -H 'Content-type: application/xml' http://<NetOps Portal>:8181/pc/center/webservice/groups/groupItemId/6362/
+++
To see the members of this group GET
http://<NetOps Portal>:8181/pc/center/webservice/groups/groupItemId/6362/items
+++
curl -kv -u admin -X GET -H 'Content-type: application/xml' http://<NetOps Portal>:8181/pc/center/webservice/groups/groupItemId/6362/items
+++