UNPKG

@bedrijfsdatanl/n8n-nodes-prospectpro

Version:

n8n node for ProspectPro - Identify Dutch B2B ProspectPro in rapid time

48 lines 1.32 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.contactsDeleteOperationProperties = void 0; exports.contactsDeleteOperationProperties = [ { displayName: 'Prospect ID', name: 'id', type: 'string', default: '', required: true, description: 'Enter the ID of the prospect the contact is associated with', displayOptions: { show: { resource: ['contacts'], operation: ['delete'], }, }, routing: { request: { qs: { company_id: '={{$value}}', }, }, }, }, { displayName: 'Contact ID', name: 'contact_id', type: 'string', default: '', required: true, description: 'Enter the ID of the contact you want to delete. WARNING: This action cannot be undone.', displayOptions: { show: { resource: ['contacts'], operation: ['delete'], }, }, routing: { request: { qs: { contact_id: '={{$value}}' }, }, }, } ]; //# sourceMappingURL=ContactsDelete.properties.js.map