Method: Frontapp::Client::Conversations#remove_conversation_links!

Defined in:
lib/frontapp/client/conversations.rb

#remove_conversation_links!(conversation_id, params = {}) ⇒ Object

Parameters Name Type Description


conversation_id string The conversation Id link_ids array of strings link IDs to remove




92
93
94
95
# File 'lib/frontapp/client/conversations.rb', line 92

def remove_conversation_links!(conversation_id, params = {})
  cleaned = params.permit(:link_ids)
  delete("conversations/#{conversation_id}/links", cleaned)
end