When a node is added in HCO, the SNMP credentials are stored in the database and a unique Credential ID is created. Where can I find or retrieve this Credential ID?
Hi
Below is a SWQL query you can use to find out the credential ID and understand the relationship
SELECT N.Caption ,n.SNMPVersion ,C.CredentialType ,C.ID AS CredentialID ,C.Name AS CredentialName FROM Orion.Nodes as N INNER JOIN Orion.NodeSettings AS NS on N.nodeid=NS.NodeID AND NS.SettingName LIKE '%SNMP%' INNER JOIN Orion.Credential AS C ON NS.SettingValue=C.ID