When someone leaves a voicemail, I would like to have RingCentral send an email to me with the voicemail attached as an audio file. RingCentral sends a "notification" and optionally, the transcribed text of the voicemail, but not the audio file. Can I use the RingCentral API to access the voicemail audio files (and transcriptions)?
RingCentral already have the feature of sending notification mails with voicemail audio files.
You need to set the notification to your mail from your online account portal:
and you will get email that contains voicemail audio files:
If you want to get the audio file via API, you need to call the message store API:
GET https://platform.devtest.ringcentral.com/restapi/v1.0/account/~/extension/~/message-store
and in response you will get the AudioTranscription and voice mail media file url something like this:
{
....
"attachments": [
{
"id": <id>,
"uri":
https://media.devtest.ringcentral.com/restapi/v1.0/account/<accountid>/extension/<extensionid>/message-store/<messagestireid>/content/<contentid>
}
You can download the voicemail file from the attachment url
Related
Hi in telegram api i found this api auth.checkPhone but telegram only show data to send and receive, no url to send that data how can i use those api? To which telegram url should i send data (not bot api here)
There is a feature in whatsapp to link his app with an other device.
I can not find any documentation about it, I do not know if this is open.
I would like to be able to link my whatsapp to a custom app, so I can do some process on my messages
I have an incoming webhook in a Google Chat room called 'Github Bot'. A Python script hits the webhook URL with a standard message POST payload.
The web interface at https://chat.google.com shows the correct name 'Github Bot' in any messages received to this webhook.
But the mobile Chat application shows those same messages as coming from 'Unknown User'.
Is there any way to make the mobile app use the webhook's name as the sender, same as the web interface does? E.G, is there some attribute I can send as part of the payload, or is this simply a bug/non-implementation on the mobile app and I can't do anything about it?
Thanks!
This seems to be a bug:
The webhook name and the Bot label are not shown properly on the iOS mobile app if an avatar is added to the webhook:
On Android, and on the web browser, the name and the Bot label are displayed correctly:
Reported in Issue Tracker:
I went ahead and reported this behavior in Google Issue Tracker:
Messages from incoming webhooks are not displayed properly on iOS
I'd suggest you to star this issue in order to keep track of this and to help prioritizing it.
I am curious to know how Bookmyshow and Redbus decrypts Whatsapp API to send text message via whatsapp ?
Does Whatsapp published their API publically or their technical team decrypt their API ?
So far WhatsApp has not publicly announced API's. It is not sure if there is any API available for premium customers like Bookmyshow or Redbus.
But you can achieve automated message like how Bookmyshow and redbus does by using Selenium combined with WhatsApp Web.
WhatsApp has provided a feature called Click to Chat, reference : https://faq.whatsapp.com/en/26000030/. By this method you can message anyone without having their phone number saved in your phone contacts list.
Click to chat workflow involves
Creating a custom URL with user phone number and text message to send
Clicking on the Send Button (This will open WhatsApp Web with user phone number provided is selected in WhatsApp Web chat area)
Clicking on the send button in chat area of whats app web to send message.
The above 3 steps can be automated using Selenium (Web browser automation).
There are lot of articles explaining this method and one such example can be found at https://www.craftedforeveryone.com/whatsapp-send-api-or-click-to-chat-automation-using-selenium-and-c-sharp/
By using Selenium, WhatsApp for Business and WhatsApp Web you can exactly replicate how bookmyshow sends messages.
WhatsApp for Business provides option to set automatic replies by which you can auto respond to the incoming messages.
I am working on a project which will implement chat feature. I am using GCM to send message and working fine. But i want to send image just like facebook chat. After searching google i found that we can send image by encoding the image into base64 string. But the message size of gcm is up to 4kb so i can not send image like that. Here i need to upload the image into server and then needs to send the user a link and fetch the image from that link. But i think this will be a slow process . What can i do know?
I am sending message to others directly from my device using gcm. Please help me. I already found AirBop. But is there any other solution to send image?
you have to upload the image without GCM, On your server you have to had application that read the file from your device (Via Socket), and return the URL of the saved image, then the device send a link via gcm (as text) the partner gets the link and download the image.