<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>What's New topics</title>
    <link>https://techcommunity.microsoft.com/t5/what-s-new/bd-p/WhatsNew</link>
    <description>What's New topics</description>
    <pubDate>Sat, 16 May 2026 11:07:56 GMT</pubDate>
    <dc:creator>WhatsNew</dc:creator>
    <dc:date>2026-05-16T11:07:56Z</dc:date>
    <item>
      <title>Using Adaptive Cards to display carousels in Health Bot</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/using-adaptive-cards-to-display-carousels-in-health-bot/m-p/4365615#M157</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we attach an array of Adaptive Cards using the Dynamic Card, to display as Carousel?&lt;/P&gt;&lt;P&gt;I am trying to do something like below in a Dynamic Card, but it just displays empty cards in the carousel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(function(){&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; var data = ${dataList};&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; var cards = data.map(function(item) {&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; return {&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; type: "AdaptiveCard",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $schema: "http://adaptivecards.io/schemas/adaptive-card.json",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; version: "1.3",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; body: [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: "Container",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; isVisible: true,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; items: [ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: "Image",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; style: "person",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: item.imageUrl,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; altText: item.imageAltText,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; size: "medium"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;},&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: "TextBlock",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; text: item.title,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; weight: "bolder",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; size: "medium",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; wrap: true&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; type: "ActionSet",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; actions: [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: "Action.OpenUrl",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; title: "View Profile",&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: item.buttonUrl,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; id: item.buttonId&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; }&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; ]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; }&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;});&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; return cards;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;})();&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;${dataList} is an array of objects with properties imageUrl, imageAltText, title, buttonUrl and buttonId.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I came across documentation on how to implement this in Copilot Studio - https://learn.microsoft.com/en-us/microsoft-copilot-studio/guidance/adaptive-card-display-carousels&lt;/P&gt;&lt;P&gt;Do we have any documentation available for Health Bot as well?&lt;/P&gt;&lt;P&gt;Appreciate any guidance !!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Abhilash&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 14:04:34 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/using-adaptive-cards-to-display-carousels-in-health-bot/m-p/4365615#M157</guid>
      <dc:creator>akuchuri</dc:creator>
      <dc:date>2025-01-13T14:04:34Z</dc:date>
    </item>
    <item>
      <title>value changes  sheet</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/value-changes-sheet/m-p/4125200#M155</link>
      <description>&lt;P&gt;Hi everyone, I'm not very expert in office script, I wrote this code but I would like the script to start when a value changes in another sheet.&lt;BR /&gt;for now I can only activate it via button.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;function main(workbook: ExcelScript.Workbook) {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;// Refresh all data connections&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;workbook.refreshAllDataConnections();&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;// Row height&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;workbook.getWorksheet("Matrice").getRange("A4").getFormat().setRowHeight(200 * 3 / 4);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;workbook.getWorksheet("Matrice").&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;getRange("F5:F1000").getEntireColumn().getFormat().setHorizontalAlignment(ExcelScript.HorizontalAlignment.left);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2024 20:17:02 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/value-changes-sheet/m-p/4125200#M155</guid>
      <dc:creator>Slash77</dc:creator>
      <dc:date>2024-04-27T20:17:02Z</dc:date>
    </item>
    <item>
      <title>Integrating health bot to angular</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/integrating-health-bot-to-angular/m-p/4052126#M154</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;as per my project requirement i need to integrate the azure health bot to my angular application.&lt;/P&gt;&lt;P&gt;can any one suggest how can i achieve this or any code snippet will be highly appriciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 11:12:51 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/integrating-health-bot-to-angular/m-p/4052126#M154</guid>
      <dc:creator>VIJAY VENKATARAMANA ALUVALA</dc:creator>
      <dc:date>2024-02-08T11:12:51Z</dc:date>
    </item>
    <item>
      <title>Getting Response Body</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/getting-response-body/m-p/3973710#M151</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to use the contents of a http response body in my conversation flow. In the data connection element of the health bot, the response variable is named as 'res'. The process is like the data connection element connects to a logic app where user's credentials are verified and then a welcome message with user's name is displayed ("welcome {Firstname}"). I can see the message in logic apps's response body but how do i access this in my bot?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 11:45:55 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/getting-response-body/m-p/3973710#M151</guid>
      <dc:creator>Ujjawal23</dc:creator>
      <dc:date>2023-11-06T11:45:55Z</dc:date>
    </item>
    <item>
      <title>Saving a Variable and displaying it</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/saving-a-variable-and-displaying-it/m-p/3289603#M143</link>
      <description>&lt;P&gt;This should be an easy answer but I can't find any documentation on it.&amp;nbsp; I want to be able to prompt the user and receive an answer.&amp;nbsp; I then want to prompt the user again for another answer and use the variable from the first prompt in my Display Text.&amp;nbsp; Example:&amp;nbsp; My first prompt has "What is your name".&amp;nbsp; I then save that to a variable named varName.&amp;nbsp; I then go to the second Prompt and I want it to say "Hi, Brian, how are you today?".&amp;nbsp; I want to take the varName and put it in the Display Text.&amp;nbsp; How can that be accomplished.&amp;nbsp; I am fairly new to Healthbot/Chatbot so any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 19:46:57 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/saving-a-variable-and-displaying-it/m-p/3289603#M143</guid>
      <dc:creator>BrianBeard42</dc:creator>
      <dc:date>2022-04-19T19:46:57Z</dc:date>
    </item>
    <item>
      <title>Moving a bot from Draft to Production</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/moving-a-bot-from-draft-to-production/m-p/3289287#M142</link>
      <description>&lt;P&gt;I would like to know how you handle moving a Healthbot from Draft to Production.&amp;nbsp; I don't know if there is a migration solution within Healthbot.&amp;nbsp; As an example, I have a Healthbot in Production but I want to make some changes to it but I don't want those changes to go into Production until I am ready.&amp;nbsp; The way I believe it works today, is that as soon as I save the Healthbot changes, those changes are in Production.&amp;nbsp; My thought is that I have to create a clone of my production bot and then make changes to the clone.&amp;nbsp; When I am ready for Production, I just change the "Scenario ID"s between the Production one and the clone one.&amp;nbsp; The Clone will now have my production "Scenario ID".&amp;nbsp; I think this will work but just checking with the community if there is a better way.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 14:47:30 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/moving-a-bot-from-draft-to-production/m-p/3289287#M142</guid>
      <dc:creator>BrianBeard42</dc:creator>
      <dc:date>2022-04-19T14:47:30Z</dc:date>
    </item>
    <item>
      <title>Health bot Media Qurestion</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/health-bot-media-qurestion/m-p/3279937#M141</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello! I have two questions when using the health bot.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1. I try to use the “getUserMedia” method to access the user’s camera inside the health bot as an action, but that called up an error as “navigator is not defined”. Is this because the Azure Health Bot couldn’t access the getUserMedia API? If that’s the reason, are there any other methods I can use to achieve this requirement? Is there any previous chatbot that has successfully accessed the users’ camera and audio?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The core code I try to use in Action:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// require to access a video and audio input device from user
let constrains = {
    video:true,
    audio: true
};
let promise = navigator.mediaDevices.getUserMedia(constraints);

promise.then(function(mediaStream){
    // get video element and play the video
    var video = document.querySelector("video");
    video.srcObject = mediaStream;
    video.onloadedmetadata = function(e){
        video.play();
    };
});
// if the require is failed
promise.catch(function(err){
    console.log(err)
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2.&amp;nbsp;I try to show back the video that the user uploaded to the bot as an attachment but failed. I try to use a Hero card, but I don't really understand how it works for the card action "playVideo". Can I show the video inside a Hero card or others? What should be the value?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 11:52:05 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/health-bot-media-qurestion/m-p/3279937#M141</guid>
      <dc:creator>Xiaohan75</dc:creator>
      <dc:date>2022-04-08T11:52:05Z</dc:date>
    </item>
    <item>
      <title>LUIS Integration in Health Bot</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/luis-integration-in-health-bot/m-p/3256318#M140</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;As provided by microsoft document to integrate LUIS in azure health Bot.(&lt;A href="https://docs.microsoft.com/en-us/learn/modules/health-bot-language-understanding/6-integrate-luis-into-the-azure-health-bot)" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/learn/modules/health-bot-language-understanding/6-integrate-luis-into-the-azure-health-bot)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;They have only provided a provision to test in web chat. But how to integrate the luis model created in our custom scenario. please provide Insert LU functionality in detail to integrate LUIS into scenario.&lt;/P&gt;&lt;P&gt;Even LU functionality is added to scenario and interrupting is allowed in configuration, its not recognising the intent and breaking the flow. Instead it is working according to flow designed in scenario.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 06:08:22 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/luis-integration-in-health-bot/m-p/3256318#M140</guid>
      <dc:creator>Lakshmi_Ravi</dc:creator>
      <dc:date>2022-03-16T06:08:22Z</dc:date>
    </item>
    <item>
      <title>Unable to handoff user to live agent from Microsoft Health Bot Service to Microsoft Teams</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/unable-to-handoff-user-to-live-agent-from-microsoft-health-bot/m-p/2825575#M139</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;H1&gt;&lt;SPAN class=""&gt;&lt;A href="https://techcommunity.microsoft.com/t5/what-s-new/unable-to-handoff-user-to-live-agent-from-microsoft-health-bot/m-p/1321615" target="_blank" rel="noopener"&gt;Unable to handoff user to live agent from Microsoft Health Bot Service to Microsoft Teams&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/H1&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had configured the health for Microsoft Teams bot according to this links&lt;SPAN&gt;&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/healthbot/handoff" target="_blank" rel="noopener noreferrer"&gt;https://docs.microsoft.com/en-us/healthbot/handoff,&lt;/A&gt;&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/healthbot/handoff-teams" target="_blank" rel="noopener noreferrer"&gt;https://docs.microsoft.com/en-us/healthbot/handoff-teams &lt;/A&gt;&lt;/SPAN&gt;&amp;nbsp; &amp;nbsp;and i am unable to log in as an agent on Microsoft Teams. and I am getting&amp;nbsp;&lt;SPAN&gt;Handoff scenario error - Check Microsoft Teams handoff configuration or parameters passed to the agent login scenario&amp;nbsp;&lt;/SPAN&gt;when I login through my team's app. please check the attachment&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Any response from your side with be appreciated.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 08 Oct 2021 06:36:20 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/unable-to-handoff-user-to-live-agent-from-microsoft-health-bot/m-p/2825575#M139</guid>
      <dc:creator>VikramCherry</dc:creator>
      <dc:date>2021-10-08T06:36:20Z</dc:date>
    </item>
    <item>
      <title>Voice Enablement with Azure Health Bot</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/voice-enablement-with-azure-health-bot/m-p/2754886#M137</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to integrate voice with webchat provided by MS for Azure Health Bot . We don't have much content and sample over internet or in the documentation .&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can somebody help ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Sep 2021 05:30:06 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/voice-enablement-with-azure-health-bot/m-p/2754886#M137</guid>
      <dc:creator>nitishranjan</dc:creator>
      <dc:date>2021-09-16T05:30:06Z</dc:date>
    </item>
    <item>
      <title>Capture Logged in User's Mail</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/capture-logged-in-user-s-mail/m-p/2661094#M133</link>
      <description>&lt;P&gt;I am saving feedback data using&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;session.saveFeedback() method but I also want the logged in users email to be saved. How can i get that information .&lt;/SPAN&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;A href="https://techcommunity.microsoft.com/t5/user/viewprofilepage/user-id/152917" target="_blank" rel="noopener"&gt;@Adam Walker&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Aug 2021 15:08:03 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/capture-logged-in-user-s-mail/m-p/2661094#M133</guid>
      <dc:creator>Debpratim</dc:creator>
      <dc:date>2021-08-18T15:08:03Z</dc:date>
    </item>
    <item>
      <title>How to use external  third-party JS</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/how-to-use-external-third-party-js/m-p/2416378#M132</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;I am trying to use some thirdparty JS withing heathbot to get my work done, is it possible and if yes how ?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 14:34:15 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/how-to-use-external-third-party-js/m-p/2416378#M132</guid>
      <dc:creator>vaibhavsharma</dc:creator>
      <dc:date>2021-06-04T14:34:15Z</dc:date>
    </item>
    <item>
      <title>health bot</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/health-bot/m-p/2258606#M125</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;actually i was creating a health bot and in that when i was creating any prompt say - yes/no prompt and when i run it , it says"&lt;/P&gt;&lt;DIV class="css-1j843a5 css-lqhn5n bubble"&gt;&lt;DIV class="webchat__bubble__content"&gt;&lt;DIV class="markdown css-1b7yvbl"&gt;&lt;P&gt;Sorry, it seems I can’t answer this."&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you plz guide me to solve this issue&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 07 Apr 2021 10:23:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/health-bot/m-p/2258606#M125</guid>
      <dc:creator>avinash2611</dc:creator>
      <dc:date>2021-04-07T10:23:00Z</dc:date>
    </item>
    <item>
      <title>Get Or Assign user id</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/get-or-assign-user-id/m-p/2256568#M119</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have noticed that while creating logs azure health bot assigns a dummy userId something like `debug_45jfff454gaa`, Is it possible to assign user a dummy self created Id, and if not, can we get the self assigned userId.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="152917" data-lia-user-login="Adam Walker" class="lia-mention lia-mention-user"&gt;Adam Walker&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="310594" data-lia-user-login="GregoryLisiak" class="lia-mention lia-mention-user"&gt;GregoryLisiak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2021 14:14:04 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/get-or-assign-user-id/m-p/2256568#M119</guid>
      <dc:creator>vaibhavsharma</dc:creator>
      <dc:date>2021-04-06T14:14:04Z</dc:date>
    </item>
    <item>
      <title>Get Conversation Logs</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/get-conversation-logs/m-p/2254105#M116</link>
      <description>&lt;P&gt;Hi Guys I want to get conversation logs, Is there any functionality in health bot by which I can get current conversation logs so I can send that to user.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="152917" data-lia-user-login="Adam Walker" class="lia-mention lia-mention-user"&gt;Adam Walker&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 16:10:51 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/get-conversation-logs/m-p/2254105#M116</guid>
      <dc:creator>vaibhavsharma</dc:creator>
      <dc:date>2021-04-05T16:10:51Z</dc:date>
    </item>
    <item>
      <title>Customise feedback</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/customise-feedback/m-p/2202570#M112</link>
      <description>&lt;P&gt;Hi Guys I am planning to customise feedback scenario provided by heath bot, can someone let me know, how we can do that part. and save feedback data in bot itself ?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 14:29:50 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/customise-feedback/m-p/2202570#M112</guid>
      <dc:creator>vaibhavsharma</dc:creator>
      <dc:date>2021-03-11T14:29:50Z</dc:date>
    </item>
    <item>
      <title>Fall out on similar features in multiple intents</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/fall-out-on-similar-features-in-multiple-intents/m-p/2199314#M111</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a scenario where I have two intents with similar features in Azure health bot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Constipation - I have stomach ache&lt;/P&gt;&lt;P&gt;2. Migraine - I have severe head ache&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now user on chat types, "Ache".&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Question 1: What will happen in such case?&lt;/P&gt;&lt;P&gt;Question 2: Can Azure health bot suggest automatically to user saying that it has identified two symptoms related to ache (stomach ache, head ache) choose one?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar Donakanti&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 13:34:35 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/fall-out-on-similar-features-in-multiple-intents/m-p/2199314#M111</guid>
      <dc:creator>kumardonakanti</dc:creator>
      <dc:date>2021-03-10T13:34:35Z</dc:date>
    </item>
    <item>
      <title>Greeting Scenerio not working properly ( Azure Heath Bot )</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/greeting-scenerio-not-working-properly-azure-heath-bot/m-p/2193264#M108</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a bot and created a custom greeting scenario, when user comes the scenario gets executed, but when I selects some options it gives me "Sorry, it seems I can't answer this." which seems default fallback, which I am confused with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 06:33:02 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/greeting-scenerio-not-working-properly-azure-heath-bot/m-p/2193264#M108</guid>
      <dc:creator>vaibhavsharma</dc:creator>
      <dc:date>2021-03-09T06:33:02Z</dc:date>
    </item>
    <item>
      <title>Changing the user input of a prompt after moving onto the next element of the flow</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/changing-the-user-input-of-a-prompt-after-moving-onto-the-next/m-p/2060157#M107</link>
      <description>I am using the Scenario Editor to create multiple custom scenarios. So during the conversation flow if the user realises he has given a wrong input, is there a way we can facilitate that feature so that the user can go back and start the conversation again from the point where he made a mistake?</description>
      <pubDate>Thu, 14 Jan 2021 10:38:21 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/changing-the-user-input-of-a-prompt-after-moving-onto-the-next/m-p/2060157#M107</guid>
      <dc:creator>pritha02</dc:creator>
      <dc:date>2021-01-14T10:38:21Z</dc:date>
    </item>
    <item>
      <title>Custom Telemetry - Custom Event for Bot</title>
      <link>https://techcommunity.microsoft.com/t5/what-s-new/custom-telemetry-custom-event-for-bot/m-p/2044767#M106</link>
      <description>&lt;P&gt;I know we can add custom telemetry for the Healthcare bot using&amp;nbsp;&lt;SPAN&gt;session.logCustomEvent(&amp;lt;eventName&amp;gt;, &amp;lt;eventPayload&amp;gt;). But, I've noticed that it logs the custom event parameter "speaker" to "user" instead of the bot. So, is there anyway to log a custom event and set the speaker parameter to the "bot"? I can't find any documentation on session.logCustomEvent that takes in more parameters than the eventName and eventPayload. And, it messes up all my analytics dashboards when it thinks these customEvents are from the user.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 22:38:13 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/what-s-new/custom-telemetry-custom-event-for-bot/m-p/2044767#M106</guid>
      <dc:creator>Greg Galipeau</dc:creator>
      <dc:date>2021-01-08T22:38:13Z</dc:date>
    </item>
  </channel>
</rss>

