2023/09/03

透過Teams Webhooks and connectors 提及某個人

格式如下:
{
  "type": "message",
  "attachments": [
    {
      "contentType": "application/vnd.microsoft.card.adaptive",
      "content": {
        "type": "AdaptiveCard",
        "body": [
          {
            "type": "TextBlock",
            "size": "Medium",
            "weight": "Bolder",
            "text": "2022"
          },
          {
            "type": "TextBlock",
            "text": "Hi <at>Peter Fang</at>"
          }
        ],
        "$schema": "https://adaptivecards.io/schemas/adaptive-card.json",
        "version": "1.0",
        "msteams": {
          "entities": [
            {
              "type": "mention",
              "text": "<at>Peter Fang</at>",
              "mentioned": {
                "id": "對方email",
                "name": "顯示名稱"
              }
            }
          ]
        }
      }
    }
  ]
}


結果:



參考資料:
https://stackoverflow.com/questions/48574994/mention-via-incoming-webhook-in-ms-teams