Open ChetanSharma-msft opened 1 week ago
@KaMa-linkai - Thanks for reporting your issue. We will check this at our end and will get back to you.
While Adaptive Cards do not have a direct equivalent to the summary property, you can set a short text at the top of your card using the text property of a TextBlock. This will not be in the preview section but will be displayed prominently in the card itself.
Example:
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "Your summary text here",
"weight": "Bolder",
"size": "Medium"
},
{
"type": "TextBlock",
"text": "Detailed content of the notification..."
}
],
"version": "1.2"
}
You can refer this-https://learn.microsoft.com/en-us/adaptive-cards/authoring-cards/universal-action-model
thanks. (I want to output to the preview... to check on notification (Android).)
Steps to reproduce
Copied from: https://github.com/microsoft/AdaptiveCards/issues/8962 Posted by: @KaMa-linkai
Details:
Temasでwebhookにより自社のホストよりデイリーの通知を行っています。 O365コネクタがobsoleteになりworkflowsに切り替えという事で試しています。 MessageCardを使っていたましたがAdaptiveCardへ更新しました。
MessageCardではsummaryプロパティによりTeamsのアクティビティ通知にテキストを表示出来たのですがAdaptiveCardで同様の事がしたいです。 MessageCardのAndroidでの通知を添付します。 AdaptiveCardだと「workflowsからの投稿」でプレビュー部のテキストは「Card」となります。投稿者は構わないのですがプレビュー部のテキストをwebhook呼び出し側から送り込みたいです。AdaptiveCardのスキーマにはMessageCardのsummaryのようなプロパティは見つけられませんでした。 Teamsの通知で短いテキストをwebhookから設定するAdaptiveCard以外の他代替手段などでも構いません。 Teamsサポートに問い合あせたところこちらを指示されたのでポストします。よろしく。 URL: https://adaptivecards.io/samples/ スクリーンショット 2024-07-16 10 08 38
Expected behavior
NA
Actual behavior
NA
Error details
No response