diff --git a/packages/nodes-base/nodes/Automizy/ContactDescription.ts b/packages/nodes-base/nodes/Automizy/ContactDescription.ts index 102555ce7..62f04de11 100644 --- a/packages/nodes-base/nodes/Automizy/ContactDescription.ts +++ b/packages/nodes-base/nodes/Automizy/ContactDescription.ts @@ -380,6 +380,16 @@ export const contactFields = [ default: {}, placeholder: 'Add Field', options: [ + { + displayName: 'Add Tags', + name: 'addTags', + type: 'multiOptions', + typeOptions: { + loadOptionsMethod: 'getTags', + }, + default: [], + description: 'The tags you want to add to the contact.', + }, { displayName: 'Custom Fields', name: 'customFieldsUi', @@ -416,6 +426,16 @@ export const contactFields = [ }, ], }, + { + displayName: 'Remove Tags', + name: 'removeTags', + type: 'multiOptions', + typeOptions: { + loadOptionsMethod: 'getTags', + }, + default: [], + description: 'The tags you want to add to the contact.', + }, { displayName: 'Status', name: 'status',