After 6.0.0
all MINOR
and MAJOR
version bumps will have upgrade notes
posted here.
This was changed to add support for sending media in Chat messages, users can now either provide a body
or a media_sid
.
from twilio.rest import Client
client = Client('AC123', 'auth')
client.chat.v2.services('IS123').channels('CH123').messages.create("this is the body")
from twilio.rest import Client
client = Client('AC123', 'auth')
client.chat.v2.services('IS123').channels('CH123').messages.create(body="this is the body")