How to make phone call from custom alexa skill

Viewed 2551

My intent to call the specified phone number from my own skill.

For example

Me: Alexa, ask <invocation> to find the customer service number

Alexa: Sure, the customer service number is 1800-xxx-xxx-xxx. Would you like to call

Me: Yes

[HOW TO MAKE CALL NOW?]

2 Answers

It would be possible to open a phone call from your programmed skill (alexa skill service). But for sure you not just want to start the call but also that the user can speak into alexa? But it's not possible to get the voice from the user.

Amazon Alexa transfers the speech input into text. Your skill service only get JSON requests from the amazon skill interface with intents and spoken things as text.

So there is no chance to the get the audio track from the alexa user. Also stated in the forum

  • There is a feature request - you should watch this feature and vote for it.
  • Or you implement something like a callbackservice that you interconnect users telephone to service customer number. E.g. via an app on the phone - see this
Related