Method: Conversations#create_conversation
- Defined in:
- lib/user/content/conversations.rb
#create_conversation(data) ⇒ Object
Create conversation.
Create a conversation with data.
Parameters
- data
-
(Hash) – Data to be submited.
Example
data = {
"title": "New Conversation"
}
@data = @mints_user.create_conversation(data)
51 52 53 |
# File 'lib/user/content/conversations.rb', line 51 def create_conversation(data) return @client.raw("post", "/content/conversations", nil, data_transform(data)) end |