I have a Rails app successfully creating conferences using Twilio's API at https://www.twilio.com/docs/api/twiml/conference I highly recommend Twilio.
I am looking at the page for Twilio Global Conferencing at https://www.twilio.com/user/account/voice-sms-mms/conferences (this page requires login).
I understand the difference between Basic vs. Global conferences described at that link, but it's not clear to me what happens when I select one. Three questions:
If I select Global Pricing, does that affect pricing for all phone calls happening on all my phone numbers listed at https://www.twilio.com/user/account/phone-numbers/incoming or just when I'm using the TwilML verb?
I will have some conference calls that will have more than 40 participants. In one Rails app, is there a way to use Global Conferencing for only those large phone calls so that I can use Basic Conferencing for the 90% of calls that have less than 40 participants?
Thank you!
application.rb:
config.twilio_auth_token = ENV['TWILIO_AUTH_TOKEN']
config.twilio_app_sid = ENV['TWILIO_APP_SID']
twilio.rb:
if Rails.configuration.twilio_account_sid.present? && Rails.configuration.twilio_auth_token.present?
TWILIO = Twilio::REST::Client.new(
Rails.configuration.twilio_account_sid,
Rails.configuration.twilio_auth_token
).account
end