mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(Salesforce Node): Fix Account update owner operation (#6958)
Github issue / Community forum post (link here to close automatically): https://community.n8n.io/t/cannot-update-salesforce-account-owner/27514
This commit is contained in:
@@ -2213,8 +2213,8 @@ export class Salesforce implements INodeType {
|
|||||||
if (updateFields.phone !== undefined) {
|
if (updateFields.phone !== undefined) {
|
||||||
body.Phone = updateFields.phone as string;
|
body.Phone = updateFields.phone as string;
|
||||||
}
|
}
|
||||||
if (updateFields.owner !== undefined) {
|
if (updateFields.ownerId !== undefined) {
|
||||||
body.OwnerId = updateFields.owner as string;
|
body.OwnerId = updateFields.ownerId as string;
|
||||||
}
|
}
|
||||||
if (updateFields.sicDesc !== undefined) {
|
if (updateFields.sicDesc !== undefined) {
|
||||||
body.SicDesc = updateFields.sicDesc as string;
|
body.SicDesc = updateFields.sicDesc as string;
|
||||||
|
|||||||
Reference in New Issue
Block a user