Microsoft Teams – setup a custom incoming webhook if you want an integration just for your team

Post a message to the webhook using cURL

curl -H „Content-Type: application/json“ -d „{\“text\“: \“Hello, World!\“}“ <YOUR WEBHOOK URL>

Post a message to the webhook using PowerShell

Invoke-RestMethod -Method post -ContentType ‚Application/Json‘ -Body ‚{„text“:“Hello ,World!“}‘ -Uri <YOUR WEBHOOK URL>


 

Leave a Reply

You must be logged in to post a comment.