mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Contact Delete
This commit is contained in:
@@ -30,8 +30,8 @@ export async function agileCrmApiRequest(this: IHookFunctions | IExecuteFunction
|
||||
json: true
|
||||
};
|
||||
|
||||
// Only add Body property if method not GET to avoid 400 response
|
||||
if(method !== "GET"){
|
||||
// Only add Body property if method not GET or DELETE to avoid 400 response
|
||||
if(method !== "GET" && method !== "DELETE"){
|
||||
options.body = body;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user