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