How to send a notification to TEAMS conversation id

Hello ALL @Emma I have facing with sending notifications to TEAMS, As of now I using Triggger actions throw RASA API but it’s not working in MICEROSOFT TEAMS. in whatsapp this query working perfectly

import requests
import json

url = "http://13.90.36.000:5005/conversations/29:1OoFOajWyUBf_jZYvnGfuTbskKbN3viSVX0qQ5kIhPYA4DGLDRCQVSk-BKfUjquqkdNS7I9kwOsq5Q1jotNg/trigger_intent?output_channel=botframework"

payload = json.dumps({
            "name": "greet",
            "entities": 
            {
            "temperature": "high"
            }
            })
headers = {
  'Content-Type': 'application/json'
        }
response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
  • How to send a specific messages to perticular conversation id (teams/slack/whatsapp)…?
  • How to send notifications…?