Skip to content

Instantly share code, notes, and snippets.

@pixelicous
Last active January 11, 2018 11:55
Show Gist options
  • Save pixelicous/8f3efa14e44e08d2dbf0fa8da6496515 to your computer and use it in GitHub Desktop.
Save pixelicous/8f3efa14e44e08d2dbf0fa8da6496515 to your computer and use it in GitHub Desktop.
Invoke Azure Webhook
$uri = "WEB_HOOK_URL"
$headers = @{"PARAMETER1"="VALUE1";"PARAMETER2"="VALUE2"}
$response = invoke-restmethod -method post -uri $uri -headers $headers
$jobid = [guid][string]$response.JobIds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment