Reputation: 25
I would like to setup easy Click To Call for outgoing calls using Twilio REST API. Let's say is CRM-like system with php.
Consider Example:
I am little bit confused about twilio numbers.
Please can you advice me about good and bad practice or point me right to the docs section, i am planning to do incoming calls aswell in the future.
Upvotes: 1
Views: 2368
Reputation: 73029
Twilio developer evangelist here.
Can one twilio number handle multiple outgoing simultaneous calls?
One Twilio number can handle multiple incoming/outgoing calls at the same time.
I don't know if i should put twilio number config in the Global Settings for whole website or rather put it to the User Settings so for example 10 users/agents can have 10 different twilio numbers
This depends on how you want the calls to appear. If you want each agent to have a different number then you should set this at user level, if you want one number to work for all agents, then you can probably set this at application level.
For future thinking, if you plan to take incoming calls and direct them to particular agents then you might need one number per agent. If your incoming calls will just be directed to an agent that is free, then one number will suffice.
Just as an extra note, if you have a web interface then rather than calling to the agent's personal phone, you could implement Twilio Client and make calls directly from the web browser.
Upvotes: 3