PowerAutomateを用いてアダプティブカードを投稿するシステムを作成しています。
アダプティブカードでは<アダプティブカード情報>のようにテーブルを投稿する予定です。
テーブルの値(TextBlock)の中にメンションを付けたいのですが、下記のようなエラーが発生します。
「One or more mention entity could not be found in card text」
※TextBlockの要素には<at></at>のメンションは下記より実施可能の認識です。
https://learn.microsoft.com/en-us/microsoftteams/platform/task-modules-and-cards/cards/cards-format?tabs=adaptive-md%2Cdesktop%2Cconnector-html#mention-support-within-adaptive-cards
エラーの原因と解決策が分かりますでしょうか?
<アダプティブカード情報>
{ "type": "AdaptiveCard", "$schema": "[http://adaptivecards.io/schemas/adaptive-card.json]", "version": "1.5", "body": [ { "type": "Table", "gridStyle": "accent", "columns": [ { "width": 1 }, { "width": 1 }, { "width": 3 } ], "rows": [ { "type": "TableRow", "cells": [ { "type": "TableCell", "items": [ { "type": "TextBlock", "text": "******@sample.com", "wrap": true, "weight": "Bolder" } ] }, { "type": "TableCell", "items": [ { "type": "TextBlock", "text": "Type", "wrap": true, "weight": "Bolder" } ] }, { "type": "TableCell", "items": [ { "type": "TextBlock", "text": "Description", "wrap": true, "weight": "Bolder" } ] } ], "style": "accent" } ] } ] }