skip to Main Content

I am considering using Twillio as an extension in an existing application.
My use-case is this:

  1. User clicks button in application
  2. Using Twilio API, the application calls the user.
  3. The user answers their phone
  4. Twilio connects user to some phone number. (fetched from db)

It’s a bit strange, but it is exactly my customer’s request. Before I spend too much time in the rabbit hole, I thought I would ask the community, can I do this with Twilio APIs?

2

Answers


  1. Yes. That’s actually very simple in Twilio:

    https://www.twilio.com/docs/api/rest/making-calls
    
    Login or Signup to reply.
  2. Twilio developer here!

    This is definitely a common use case for Twilio. In fact, it’s so common that we wrote up an in-depth tutorial showing you how to build an app like the one you described.

    We’ve got it in PHP, Node, Python, and Ruby – here’s the PHP version:

    https://www.twilio.com/docs/howto/walkthrough/click-to-call/php/laravel

    If you prefer to just reference the code, you can find it on GitHub too: https://github.com/TwilioDevEd/clicktocall-laravel

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search