From 9e68f8ddab36303318efdc8ab8c9ba289c94a94f Mon Sep 17 00:00:00 2001 From: Julian Hille Date: Mon, 23 Jul 2018 13:49:38 +0200 Subject: [PATCH] Add hide function to outbound class. --- src/outbound.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/outbound.js b/src/outbound.js index 2b03c97..a40959d 100644 --- a/src/outbound.js +++ b/src/outbound.js @@ -31,6 +31,10 @@ class Outbound { search(params, callback) { return this._client.get('/outbound/search', params, callback); } + + hide(id, callback) { + return this._client.post(`/outbound/faxes/${id}/hide`, callback); + } } export default Outbound;