Method: Mints::Contact#update_conversation
- Defined in:
- lib/contact.rb
#update_conversation(id, data) ⇒ Object
Update Conversation.
Update a location template info.
Parameters
- id
-
(Integer) – Conversation id.
- data
-
(Hash) – Data to be submited.
FIXME: This method doesn’t locate conversation id to be updated.
279 280 281 |
# File 'lib/contact.rb', line 279 def update_conversation(id, data) return @client.raw("put", "/content/conversations/#{id}", nil, data_transform(data), @contact_v1_url) end |