Method: Conversations#get_conversations
- Defined in:
- lib/user/content/conversations.rb
#get_conversations(options = nil) ⇒ Object
Get conversations.
Get a collection of conversations.
Parameters
- options
-
(Hash) – List of Resource Collection Options shown above can be used as parameter.
First Example
@data = @mints_user.get_conversations
Second Example
= { "fields": "title" }
@data = @mints_user.get_conversations()
19 20 21 |
# File 'lib/user/content/conversations.rb', line 19 def get_conversations( = nil) return @client.raw("get", "/content/conversations", ) end |