From db859a759156d578b001f15759a986419456cda7 Mon Sep 17 00:00:00 2001 From: Will Poynter Date: Thu, 17 Dec 2020 16:46:07 +0000 Subject: [PATCH] Added create conversation --- lib/conversation.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/conversation.js b/lib/conversation.js index d68fba52..40d911db 100644 --- a/lib/conversation.js +++ b/lib/conversation.js @@ -2,6 +2,9 @@ export default class Conversation { constructor(client) { this.client = client; } + create(params, f) { + return this.client.post('/conversations', params, f); + } list(data, f) { return this.client.get('/conversations', data, f); }