ztrikker

Comments

  • I have a use case like this. I have a service catalog item for end users to request something like an update to email whitelist. This requires a change, if we can create the change automatically from the ticket then I save engineering time by not having the ticket go to a engineer who then copy pastes the info from the…
  • Give this a try instead: $token = 'TOKEN' $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("Accept", 'application/vnd.samanage.v2.1+xml') $headers.Add("X-Samanage-Authorization", "Bearer $token") $apiurl = 'https://api.samanage.com/' curl -H $headers -X GET $apiurl +…