diff --git a/packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts b/packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts index 7a692e53db..6c07e06634 100644 --- a/packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts +++ b/packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts @@ -3147,6 +3147,31 @@ export class Pipedrive implements INodeType { }, default: '', }, + { + displayName: 'Marketing Status', + name: 'marketing_status', + type: 'options', + options: [ + { + name: 'No Consent', + value: 'no_consent', + }, + { + name: 'Unsubscribed', + value: 'unsubscribed', + }, + { + name: 'Subscribed', + value: 'subscribed', + }, + { + name: 'Archived', + value: 'archived', + }, + ], + default: 'subscribed', + description: 'Please be aware that it is only allowed once to change the marketing status from an old status to a new one.', + }, { displayName: 'Organization ID', name: 'org_id', @@ -3184,6 +3209,16 @@ export class Pipedrive implements INodeType { default: '3', description: 'Visibility of the person. If omitted, visibility will be set to the default visibility setting of this item type for the authorized user.', }, + { + displayName: 'User ID', + name: 'owner_id', + type: 'options', + typeOptions: { + loadOptionsMethod: 'getUserIds', + }, + default: '', + description: 'ID of the User this deal will be associated with.', + }, ], }, @@ -3369,6 +3404,16 @@ export class Pipedrive implements INodeType { default: '3', description: 'Visibility of the deal. If omitted, visibility will be set to the default visibility setting of this item type for the authorized user.', }, + { + displayName: 'User ID', + name: 'owner_id', + type: 'options', + typeOptions: { + loadOptionsMethod: 'getUserIds', + }, + default: '', + description: 'ID of the User this deal will be associated with.', + }, ], },