Hi Thwack,
I need to add a node to a container. The examples from both solarwinds and some other blogs reflect using XML. Is it possible to form it into a rest call, using powershell?
forexample
$nodeSetting =
@{
containerId=$containerId
MemberDefinitionInfo=???;
}
$nodeSettingjson = ConvertTo-Json $nodeSetting
$result = Invoke-RestMethod -Uri $url -Credential $solarcreds -Method Post -Body $nodeSettingjson -ContentType application/json
Thanks