<html><body><div style="font-family: times new roman, new york, times, serif; font-size: 12pt; color: #000000"><div>Hi!</div><div><br></div><div>Afaik it is not possible using the webinterface. However you can use the API plus a little Bash-Scripting</div><div>to do this. You can get all IDs of devices matching a product Class by using the following query:</div><div><br></div><div># /devices?projection=_id&query={"summary.productClass":"FRITZ!Box"}<br>curl -i 'http://localhost:7557/devices?projection=_id&query=%7B%22summary.productClass%22%3A%22FRITZ!Box%22%7D'</div><div><br></div><div>To delete a specific device, you can use the following query:</div><div><br></div><div># /devices/DEVICE_ID<br>curl -i 'http://localhost:7557/devices/DEVICE_ID' -X DELETE</div><div><br></div><div>To do this kind of stuff, it can be annoying sometimes. Thats why i wrote a Perl-Module to communicate</div><div>with the API. You could find it at (sorry for promoting that here) <a href="https://github.com/localh0rst/GenieACS-Perl" data-mce-href="https://github.com/localh0rst/GenieACS-Perl">https://github.com/localh0rst/GenieACS-Perl</a><br data-mce-bogus="1"></div><div><br></div><div>However, it might be a little too oversized for doing it only one time since it has a lot of requierements (moose/etc),</div><div>and is not written very well (i'm an admin, not a programmer).</div><div><br></div><div>Kinde regards,</div><div><br></div><div>Sebastian</div><div><br></div><div><br></div><div><br></div><hr id="zwchr"><div style="color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><b>From: </b>"Marjan Naumovski" <marjan_macka@yahoo.com><br><b>To: </b>users@lists.genieacs.com<br><b>Sent: </b>Wednesday, January 13, 2016 10:22:14 AM<br><b>Subject: </b>Deleting multiple devices<br><div><br></div><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><div id="yui_3_16_0_1_1452676225788_4475">Hi, everyone<br></div><div id="yui_3_16_0_1_1452676225788_4486"><br></div><div id="yui_3_16_0_1_1452676225788_4478">How can I delete multiple devices? For example delete devices based on product class.</div><div id="yui_3_16_0_1_1452676225788_4476"><br></div><div id="yui_3_16_0_1_1452676225788_4477"><br></div><div id="yui_3_16_0_1_1452676225788_4506">Best regards<br></div><div id="yui_3_16_0_1_1452676225788_4303"><br></div></div><br>_______________________________________________<br>Users mailing list<br>Users@lists.genieacs.com<br>http://lists.genieacs.com/mailman/listinfo/users<br></div><div><br></div></div></body></html>