From 62cc8dd9281dcdc2ebc17310132d842db7276a61 Mon Sep 17 00:00:00 2001 From: Jaroslav Hejlek Date: Fri, 19 Oct 2018 09:47:32 +0200 Subject: [PATCH] Tasks: Fixed API path --- src/tasks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks.js b/src/tasks.js index 8f958ece..9dfc097d 100644 --- a/src/tasks.js +++ b/src/tasks.js @@ -40,7 +40,7 @@ import { checkParamOrThrow, pluckData, parseDateFields, catchNotFoundOrThrow } f * @namespace tasks */ -export const BASE_PATH = '/v2/tasks'; +export const BASE_PATH = '/v2/actor-tasks'; const replaceSlashWithTilde = str => str.replace('/', '~');