After 5.0.0
all MINOR
and MAJOR
version bumps will have upgrade notes
posted here.
Twilio Ruby Helper Library’s major version 7.0.0 is now available. We ensured that you can upgrade to Ruby helper Library 7.0.0 version without any breaking changes of existing apis
Behind the scenes Ruby Helper is now auto-generated via OpenAPI with this release. This enables us to rapidly add new features and enhance consistency across versions and languages. We're pleased to inform you that version 7.0.0 adds support for the application/json content type in the request body.
To learn more about the Ruby Helper Library, check out our docs.
Twilio Ruby Helper Library’s major version 6.0.0 is now available. We ensured that you can upgrade to Ruby helper Library 6.0.0 version without any breaking changes
Behind the scenes Ruby Helper is now auto-generated via OpenAPI with this release. This enables us to rapidly add new features and enhance consistency across versions and languages.
To learn more about the Ruby Helper Library, check out our docs.
This was changed to add support for sending media in Chat messages, users can now either provide a body
or a media_sid
.
require 'twilio-ruby'
@client = Twilio::REST::Client.new "AC123", "auth"
@client.chat.v2.service('IS123').channel('CH123').message.create("this is the body", "from")
require 'twilio-ruby'
@client = Twilio::REST::Client.new "AC123", "auth"
@client.chat.v2.service('IS123').channel('CH123').message.create("from", body:"this is the body")