I’m creating a Chatbot for myself using python and trying to integrate it with Zoom.
Have already succeeded with other steps but when I try to send a response message from the bot by API call it returns response of API call with status code 201 but in front end part it showcases a message as “Unsupported type of message” while I have passed a normal string as response message.
payload = {
'robot_jid': f"{BOT_ID}@xmpp.zoom.us",
'to_jid': f"{user_jid}@xmpp.zoom.us",
'account_id': account_id,
"user_jid": user_jid,
'content': {
'head': {
'text': message,
"sub_head": {
"text": "I am a sub header"
}
},
'body': [{
'type': 'message',
'text': "Hello response"
}]
}
}
Hi @ujjwalu
I was able to replicate this issue when testing with the UI.
I reported this issue internally and I am waiting for our engineering team’s update.
If you test with the client, you won’t see this issue
UNABLE TO GET MESSAGE IN ZOOM CLIENT
Hi @elisa.zoom
I hope this message finds you well. I wanted to provide an update on the issue I previously reported regarding the unsupported type of message in zoom.
Current Status:
We can now get the greetings message in zoom client.
Requirements:
I build an echo chatbot using Microsoft Bot Builder. I want to integrate chatbot in zoom app. I created a user managed app and provided my bot endpoints URL over there and necessary scopes, but not getting the chatbot message back to the user. I am getting the request header status 000.
Here is a sample request/response
POST/API/ZOOM REQUEST