From 662ea2467ca183cff25f229150755af0bdf19936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Fri, 7 May 2021 10:58:40 +0200 Subject: [PATCH] :zap: Fix param casing --- packages/nodes-base/nodes/Zoho/ZohoCrm.node.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/nodes-base/nodes/Zoho/ZohoCrm.node.ts b/packages/nodes-base/nodes/Zoho/ZohoCrm.node.ts index 547e3f0e31..d9b2de8820 100644 --- a/packages/nodes-base/nodes/Zoho/ZohoCrm.node.ts +++ b/packages/nodes-base/nodes/Zoho/ZohoCrm.node.ts @@ -229,7 +229,7 @@ export class ZohoCrm implements INodeType { // ---------------------------------------- const body: IDataObject = { - Last_Name: this.getNodeParameter('Last_Name', i), + Last_Name: this.getNodeParameter('lastName', i), }; const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject; @@ -457,7 +457,7 @@ export class ZohoCrm implements INodeType { const body: IDataObject = { Company: this.getNodeParameter('Company', i), - Last_Name: this.getNodeParameter('Last_Name', i), + Last_Name: this.getNodeParameter('lastName', i), }; const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject; @@ -531,7 +531,7 @@ export class ZohoCrm implements INodeType { const body: IDataObject = { Subject: this.getNodeParameter('Subject', i), - Vendor_Name: this.getNodeParameter('Vendor_Name', i), + Vendor_Name: this.getNodeParameter('vendorName', i), }; const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;