mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(HubSpot Node): Update deal owner on Hubspot Deal (#7673)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
@@ -2358,6 +2358,13 @@ export class HubspotV2 implements INodeType {
|
||||
value: updateFields.dealName as string,
|
||||
});
|
||||
}
|
||||
if (updateFields.dealOwner) {
|
||||
const dealOwner = updateFields.dealOwner as IDataObject;
|
||||
body.properties.push({
|
||||
name: 'hubspot_owner_id',
|
||||
value: dealOwner.value,
|
||||
});
|
||||
}
|
||||
if (updateFields.closeDate) {
|
||||
body.properties.push({
|
||||
name: 'closedate',
|
||||
|
||||
Reference in New Issue
Block a user