mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
🐛 Fix issue with firstname when creating/updating a lead (#1545)
This commit is contained in:
parent
09d9e12db9
commit
4bff3af058
|
@ -906,8 +906,8 @@ export class Salesforce implements INodeType {
|
|||
if (additionalFields.industry !== undefined) {
|
||||
body.Industry = additionalFields.industry as string;
|
||||
}
|
||||
if (additionalFields.firstName !== undefined) {
|
||||
body.FirstName = additionalFields.firstName as string;
|
||||
if (additionalFields.firstname !== undefined) {
|
||||
body.FirstName = additionalFields.firstname as string;
|
||||
}
|
||||
if (additionalFields.leadSource !== undefined) {
|
||||
body.LeadSource = additionalFields.leadSource as string;
|
||||
|
@ -942,7 +942,6 @@ export class Salesforce implements INodeType {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
responseData = await salesforceApiRequest.call(this, 'POST', '/sobjects/lead', body);
|
||||
}
|
||||
//https://developer.salesforce.com/docs/api-explorer/sobject/Lead/patch-lead-id
|
||||
|
@ -998,8 +997,8 @@ export class Salesforce implements INodeType {
|
|||
if (updateFields.industry !== undefined) {
|
||||
body.Industry = updateFields.industry as string;
|
||||
}
|
||||
if (updateFields.firstName !== undefined) {
|
||||
body.FirstName = updateFields.firstName as string;
|
||||
if (updateFields.firstname !== undefined) {
|
||||
body.FirstName = updateFields.firstname as string;
|
||||
}
|
||||
if (updateFields.leadSource !== undefined) {
|
||||
body.LeadSource = updateFields.leadSource as string;
|
||||
|
|
Loading…
Reference in a new issue