mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
⚡ Fix param casing
This commit is contained in:
parent
c404f86e38
commit
662ea2467c
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue