I would like to implement twilio video API in my Django project but i didn't really understand the documentation. I managed to create a room following this example:
from twilio.rest import Client
api_key_sid = "SKXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
api_key_secret = "your_api_key_secret"
client = Client(api_key_sid, api_key_secret)
room = client.video.rooms.create(unique_name='DailyStandup')
print(room.sid)
What should I do after that? How can I access the room and start the chat?