Comments
-
Hopefully this helps someone trying to figure out how to do this in PHP. Be sure to change the SolarWindsUser, SolarWindsPass, NodeID and solarwindsserver url. <?php$SolarWindsAuth = base64_encode($SolarWindsUser . ':' . $SolarWindsPass);$NodeID = '12418';AddHardwareHealthSensors ($SolarWindsAuth,$NodeID);function…
-
I am really wanting to add new devices via the API. I have a functioning script, however I have not been able to figure out how to add the hardware health checkbox. I'm can run a select query, but I don't understand the insert part of your previous message. SELECT n.Caption, n.NodeID, hw.NodeID AS HWNodeID FROM Orion.Nodes…
-
As mentioned in the original post I have tried using the Insomnia REST client. I also tried Postman which returns the same error message. I have also tried the SWQL studio: Cirrus.Nodes.AddNodeToNCM coreNodeIdSystem.Int32 I get the following result: <Fault xmlns="http://www.w3.org/2003/05/soap-envelope"> - <Code>…
-
No answer since April? Should we assume that we need to change to a different vendor?
-
What file format do the maps get saved as? I would prefer to download the files with a curl request, any idea how to do this?
-
Yes, I am using the Orion (v3) endpoint.
-
Is CURLOPT_POST the same thing as this: CURLOPT_CUSTOMREQUEST => "POST", I changed it to a slash and I get the following: { "Message": "Verb Cirrus.Nodes.AddNodeToNCM requires 1 parameters not 0", "ExceptionType": "SolarWinds.InformationService.Verb.VerbExecutorException", "FullException":…
-
I tried that also, same problem. I get the same error when running it from php also.