We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c769a79 commit 918990aCopy full SHA for 918990a
1 file changed
README.md
@@ -88,6 +88,20 @@ auth_token = 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'
88
)
89
```
90
91
+### List your SMS Messages
92
+
93
+```ruby
94
+@client.api.account.messages.list
95
+```
96
97
+### Fetch a single SMS message by Sid
98
99
100
+# put the message sid you want to retrieve here:
101
+message_sid = 'SMxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
102
+@client.api.account.messages(message_sid).fetch
103
104
105
### Customizing your HTTP Client
106
twilio-ruby uses [Faraday][faraday] to make HTTP requests. You can tell
107
Twilio::REST::Client to use any of the Faraday adapters like so:
0 commit comments