Keep up to date on the latest Power Platform Updates
How?
- RSS URLs to each of Microsoft's Power Platform Blogs (provided below)
- A MS Teams Channel to post to
- 5 Flows (I promise, it's easier than it sounds)
Details
Solution
Flow x 5
- Power Apps: https://powerapps.microsoft.com/en-us/blog/feed/
- Flow: https://flow.microsoft.com/en-us/blog/feed/
- Power BI: https://powerbi.microsoft.com/en-us/blog/feed/
- Power Pages: https://powerpages.microsoft.com/en-us/blog/feed/
- Power Virtual Agents: https://powervirtualagents.microsoft.com/en-us/blog/feed/
Adaptive Card code
The hardest part is the Adaptive Card code, you can build a customised card yourself here: https://adaptivecards.io/designer/{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"speak": "Nothing to see here",
"backgroundImage": {
"url": "https://img.freepik.com/free-vector/abstract-blue-geometric-shapes-background_1035-17545.jpg"
},
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": 35,
"items": [
{
"type": "Image",
"url": "https://intelequia.com/Portals/0/Products/Microsoft%20365/Power%20Platform/powerapps.png"
}
]
},
{
"type": "Column",
"width": 65,
"items": [
{
"type": "TextBlock",
"text": "@{triggerOutputs()?['body/title']}",
"weight": "Bolder",
"size": "ExtraLarge",
"wrap": true,
"color": "Dark"
},
{
"type": "TextBlock",
"text": " ",
"size": "Medium",
"wrap": true
},
{
"type": "TextBlock",
"text": "@{triggerOutputs()?['body/summary']}",
"size": "Medium",
"spacing": "None",
"wrap": true,
"color": "Dark"
}
]
}
]
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "View Blog Post",
"url": "@{triggerOutputs()?['body/primaryLink']}",
"style": "positive"
}
]
}
Two steps too hard? No worries, here's a copy of the solution: https://github.com/BR-E20/Power-Platform-Solutions
Comments
Post a Comment