Comments
-
Is this something still in the works or has it been shelved?
-
Just save custom filters, and you can then set one of them as your default from the same place you saved the changes or as a new one. Screenshot below shows where to click to save the filters.
-
Using JSON API requests, can add ?name=UsersName or another field, at the end of the url and the returned data will have what you need. Below is an example for Hardware (Computer) asset items. # Be sure to include the trailing slash (/) $UriBase = "https://api.samanage.com/" # the API's URI that we'll be connecting to # Be…
-
under Settings -> Service Desk -> Automations you can set one up for tickets created via email and handle there.
-
Below is an example I tested adding to a Custom Field to assets with using Powershell. # Set to True to see debug output below. $DEBUG = $true # This is used to perform a forced refresh. Will also cause a new asset that has not yet checked in # to check in for the first time and get added to Solarwinds. $FileToVerify =…
-
Think I found a pretty acceptable answer while using Invoke-RestMethod in powershell. 1. Perform query against hardwares.json but include query for the PC name as hardwares.json?name=<PCName>. This will let me pull the id entry from the resulting json so it's minimal impact. Result empty to verify if result found anything…