SCORCH Web Service API

Web Service URLs Web Service URL (no change for 2016): http://sco01:81/orchestrator2012/orchestrator.svc/ Web Console URL: http://sco01:82/ Get runbooks: http://server01.contoso.com:81/Orchestrator2012/Orchestrator.svc/Runbooks Access Orchestrator Runbooks via Web Service Get a Runbook PowerShell $secpasswd = ConvertTo-SecureString “Password01!” -AsPlainText -Force $mycreds = New-Object System.Management.Automation.PSCredential(“contoso\Administrator”, $secpasswd) $OrchURI = “http://SCO01:81/Orchestrator2012/Orchestrator.svc/Runbooks?`$filter=Name eq ‘Test'” $ResponseObject = invoke-webrequest -Uri $OrchURI -method …

SCORCH Web Service API Read More »