Power Automate Workflow notifications #1303
Unanswered
mateusamorim96
asked this question in
Q&A
Replies: 1 comment
-
Create a local file on your system with the contents; let's assume you put it in {
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.5",
"body": [
{
"type": "TextBlock",
"text": "{{app_title}}",
"weight": "Bolder",
"separator": true
},
{
"type": "TextBlock",
"text": "{{app_body}}",
"wrap": true
}
]
} Now when you send your workflow link; do the following: apprise -vvv -b 'test body' -t 'test title' "workflow://credentials/?template=C:\template.json" (based on https://github.com/caronc/apprise/wiki/Notify_workflows#templating) Let me know how it goes |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I was reading this page https://github.com/caronc/apprise/wiki/Notify_workflows but it was not clear to me how to send the notifications with template using Python only instead of CLI.
Basically I'm trying to send notifications with adaptative cards. Could anyone please provide some example?
Beta Was this translation helpful? Give feedback.
All reactions