Method: Mints::Contact#create_conversation
- Defined in:
- lib/contact.rb
#create_conversation(data) ⇒ Object
Create Conversation.
Create a conversation with data.
Parameters
- data
-
(Hash) – Data to be submited.
Example
data = {
"title": "New Conversation To Test"
}
@data = @mints_contact.create_conversation(data)
267 268 269 |
# File 'lib/contact.rb', line 267 def create_conversation(data) return @client.raw("post", "/content/conversations", nil, data_transform(data), @contact_v1_url) end |