🐛 Fix issue with firstname when creating/updating a lead (#1545)

This commit is contained in:
Ricardo Espinoza 2021-03-18 05:53:39 -04:00 committed by GitHub
parent 09d9e12db9
commit 4bff3af058
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;