Skip to content

Instantly share code, notes, and snippets.

@indented-automation
Last active April 7, 2022 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indented-automation/9e1b422db5661b7426c37855c20efd0f to your computer and use it in GitHub Desktop.
Save indented-automation/9e1b422db5661b7426c37855c20efd0f to your computer and use it in GitHub Desktop.
$request = @{
Uri = 'https://api.pushover.net/1/messages.json'
Method = 'POST'
ContentType = 'application/x-www-form-urlencoded'
Body = @{
token = 'abc123'
user = 'user123'
message = 'hello world'
}
}
Invoke-RestMethod @request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment