Skip to content

Instantly share code, notes, and snippets.

@priyankvex
Last active June 3, 2018 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save priyankvex/e87cc0ab4f68e3b1f0fc7efd42e667f4 to your computer and use it in GitHub Desktop.
Save priyankvex/e87cc0ab4f68e3b1f0fc7efd42e667f4 to your computer and use it in GitHub Desktop.
def connect_second_agent_to_conference(cls, second_agent_number, conference_room):
response = TwilioClient.conferences(conference_room).participants.create(
from_=twilio_caller_id,
to=second_agent_number,
early_media=True
)
return response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment