mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
🐛 Fix Toggl Trigger Node (#2418)
Updating API URL as per https://support.toggl.com/en/articles/5708431-why-did-my-integration-stop-working #2417
This commit is contained in:
parent
6a1ca82312
commit
7a0e072d98
|
@ -25,7 +25,7 @@ export async function togglApiRequest(this: ITriggerFunctions | IPollFunctions |
|
||||||
headers: headerWithAuthentication,
|
headers: headerWithAuthentication,
|
||||||
method,
|
method,
|
||||||
qs: query,
|
qs: query,
|
||||||
uri: uri || `https://www.toggl.com/api/v8${resource}`,
|
uri: uri || `https://api.track.toggl.com/api/v8${resource}`,
|
||||||
body,
|
body,
|
||||||
json: true,
|
json: true,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue