Change the tasks update method

Change the method from get to post to match the API documentation
This commit is contained in:
Michael Campbell 2024-03-11 21:18:06 -04:00
parent 5d6b96e7cd
commit 5496b694ff
1 changed files with 2 additions and 2 deletions

View File

@ -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[] = [
},
},
},
];
];