Microsoft decided to deprecate Office 365 connectors. We have to move to the new workflows as described here.
I succeeded in creating a card which is invoked by a webhook.
Current payload as described in this document
In the screen below, you can see the old tiles (with the duck) on my mobile phone.
I am desperately searching for information how to define the yellow areas. In the yellow area I want to put some information but I don’t get it.
{
"attachments" : [
{
"content" : {
"body" : [
{
"wrap" : true,
"text" : "...",
"weight" : "Bolder",
"horizontalAlignment" : "Left",
"spacing" : "Medium",
"color" : "Accent",
"id" : "Title",
"type" : "TextBlock",
"size" : "ExtraLarge"
},
{
"wrap" : true,
"separator" : true,
"id" : "acHeaderTagLine",
"type" : "TextBlock",
"text" : ".."
},
{
"wrap" : true,
"text" : "...",
"weight" : "Bolder",
"spacing" : "None",
"type" : "TextBlock",
"id" : "acHeader",
"size" : "ExtraLarge"
},
{
"type" : "TextBlock",
"text" : "..",
"id" : "acInstructions",
"wrap" : true
},
{
"type" : "TextBlock",
"text" : "..",
"wrap" : true
},
{
"facts" : [
{
"title" : "..",
"value" : ""
},
....
{
"title" : "...",
"value" : ".."
}
],
"type" : "FactSet"
}
],
"version" : "1.4",
"$schema" : "http://adaptivecards.io/schemas/adaptive-card.json",
"type" : "AdaptiveCard",
"msteams" : {
"width" : "Full"
}
},
"contentType" : "application/vnd.microsoft.card.adaptive",
"contentUrl" : null
}
],
"type" : "message"
}
1