Hi,
Is there a way to bulk delete interfaces that were accidentally created on a particular date? I can identify these interfaces (mostly down/shutdown and that were not supposed to be added) via audit table, but I need help to delete them in bulk. We could have managed through the manage entities/nodes page but there hundreds of them. Please help.
SELECT AccountID, DisplayName, NetworkNode, ObservationTimestamp, TimeLoggedUtc FROM Orion.AuditingEvents
Where AccountID = 'admin' AND ObservationTimestamp LIKE '%Oct 12 2024%' AND DisplayName LIKE '%created interface%'
ORDER BY ObservationTimestamp DESC