Created
July 11, 2024 16:28
-
-
Save pichuang/efc38369588fb1be06ffebba51662d62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -X POST -H "Content-Type: application/Json;charset=utf-8" -d '{ | |
"type":"message", | |
"attachments":[ | |
{ | |
"contentType":"application/vnd.microsoft.card.adaptive", | |
"contentUrl":null, | |
"content":{ | |
"$schema":"http://adaptivecards.io/schemas/adaptive-card.json", | |
"type":"AdaptiveCard", | |
"version":"1.2", | |
"body":[ | |
{ | |
"type": "TextBlock", | |
"text": "Linux Curl For Demo 20240712", | |
"wrap": true | |
} | |
], | |
"actions":[ | |
{ | |
"type": "Action.OpenUrl", | |
"title": "Learn more", | |
"url": "https://www.microsoft.com", | |
} | |
] | |
} | |
} | |
] | |
}' <your workflow endpoint url> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment