Deletes the specified devices from the Unwired Server, freeing licenses. Also deletes device associated metadata, such as subscriptions. This method does not delete the user.
void deleteDevices(Collection<String> deviceIds) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
//Delete devices
List<String> deviceIds = new ArrayList<String>();
deviceIds.add("MBS_31");
deviceUser.deleteDevices(deviceIds);