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); }