@bedrijfsdatanl/n8n-nodes-prospectpro
Version:
n8n node for ProspectPro - Identify Dutch B2B ProspectPro in rapid time
47 lines • 1.38 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.eventsGetManyOperationProperties = void 0;
exports.eventsGetManyOperationProperties = [
{
displayName: 'Prospect ID',
name: 'id',
type: 'string',
default: '',
required: true,
description: 'The ID of the prospect you want to retrieve events for',
displayOptions: {
show: {
resource: ['events'],
operation: ['get_many'],
},
},
routing: {
request: {
qs: {
id: '={{ $value ? $value : undefined }}',
},
},
},
},
{
displayName: 'Detailed Output',
name: 'details',
type: 'boolean',
default: false,
description: 'Whether to add details such as the total number of events found. WARNING: This returns 1 item in stead of an array of items.',
displayOptions: {
show: {
resource: ['events'],
operation: ['get_many']
},
},
routing: {
request: {
qs: {
no_header: '={{ $value && $value === true ? undefined : 1 }}'
},
},
},
},
];
//# sourceMappingURL=EventsGetMany.properties.js.map