From 5496b694ff754d5588d32ce61ceba08bdb30e7d5 Mon Sep 17 00:00:00 2001 From: Michael Campbell Date: Mon, 11 Mar 2024 21:18:06 -0400 Subject: [PATCH] Change the tasks update method Change the method from get to post to match the API documentation --- nodes/Vikunja/properties/Task.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes/Vikunja/properties/Task.ts b/nodes/Vikunja/properties/Task.ts index 7a1fd36..d1b6ba7 100644 --- a/nodes/Vikunja/properties/Task.ts +++ b/nodes/Vikunja/properties/Task.ts @@ -185,7 +185,7 @@ export const taskProperties: INodeProperties[] = [ action: 'Update a task', routing: { request: { - method: 'GET', + method: 'POST', url: '=/tasks/{{$parameter.taskId}}', }, }, @@ -611,4 +611,4 @@ export const taskProperties: INodeProperties[] = [ }, }, }, -]; \ No newline at end of file +];