From 7a0e072d98811ed7cfd0e700f986ecd96c303178 Mon Sep 17 00:00:00 2001 From: Tom McAtee Date: Sat, 13 Nov 2021 19:44:25 +1030 Subject: [PATCH] :bug: Fix Toggl Trigger Node (#2418) Updating API URL as per https://support.toggl.com/en/articles/5708431-why-did-my-integration-stop-working #2417 --- packages/nodes-base/nodes/Toggl/GenericFunctions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nodes-base/nodes/Toggl/GenericFunctions.ts b/packages/nodes-base/nodes/Toggl/GenericFunctions.ts index c694cf6008..b8386abb94 100644 --- a/packages/nodes-base/nodes/Toggl/GenericFunctions.ts +++ b/packages/nodes-base/nodes/Toggl/GenericFunctions.ts @@ -25,7 +25,7 @@ export async function togglApiRequest(this: ITriggerFunctions | IPollFunctions | headers: headerWithAuthentication, method, qs: query, - uri: uri || `https://www.toggl.com/api/v8${resource}`, + uri: uri || `https://api.track.toggl.com/api/v8${resource}`, body, json: true, };