@bedrijfsdatanl/n8n-nodes-bedrijfsdata
Version:
n8n node for Bedrijfsdata.nl API - Search and retrieve Dutch company information
47 lines • 1.37 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.companiesGetOperationProperties = void 0;
exports.companiesGetOperationProperties = [
{
displayName: 'Bedrijfsdata.nl ID',
name: 'id',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['companies'],
operation: ['get']
},
},
routing: {
request: {
qs: {
id: '={{ $value ? $value : undefined }}',
},
},
},
description: 'Bedrijfsdata.nl ID of a specific company',
},
{
displayName: 'Detailed Output',
name: 'details',
type: 'boolean',
default: false,
description: 'Whether to add details such as credit usage. WARNING: This creates an output that needs to be parsed to process the company.',
displayOptions: {
show: {
resource: ['companies'],
operation: ['get']
},
},
routing: {
request: {
qs: {
no_header: '={{ $value && $value === true ? undefined : 1 }}'
},
},
},
},
];
//# sourceMappingURL=CompaniesGet.properties.js.map