Rasa http API

Hai Team, I have created a chatbot. This chat-bot is using one admin user and 10 normal_user’s all are different conversation_id’s I tried to send a message in admin chat-bot into other alluser’s at same time (broad cast) but the api(Rasa Open Source Documentation ) was working and it shows response 200 but the other user’s not getting admin’s message massages please send me any resources for resolve this

example code : import requests

import json

url = “http://localhost:5005/conversations/whatsapp:+919*****7928/trigger_intent?output_channel=latest

payload = json.dumps({

“name”: “log emp id”,

“entities”: {

"log_emp_id": "ID6585"

}

})

headers = {

‘Content-Type’: ‘application/json’

}

response = requests.request(“POST”, url, headers=headers, data=payload)

print(response.text)