diff --git a/packages/nodes-base/nodes/Trello/GenericFunctions.ts b/packages/nodes-base/nodes/Trello/GenericFunctions.ts index 18fcbee1a708e..91f90be4b88f5 100644 --- a/packages/nodes-base/nodes/Trello/GenericFunctions.ts +++ b/packages/nodes-base/nodes/Trello/GenericFunctions.ts @@ -28,6 +28,10 @@ export async function apiRequest( json: true, }; + if (method === 'GET') { + delete options.body; + } + return await this.helpers.requestWithAuthentication.call(this, 'trelloApi', options); }