@bedrijfsdatanl/n8n-nodes-bedrijfsdata
Version:
n8n node for Bedrijfsdata.nl API - Search and retrieve Dutch company information
48 lines • 1.37 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.validationPostcodeGetOperationProperties = void 0;
exports.validationPostcodeGetOperationProperties = [
{
displayName: 'Postcode',
name: 'postcode',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['validation'],
operation: ['get_postcode']
},
},
routing: {
request: {
qs: {
postcode: '={{ $value ? $value : undefined }}',
},
},
},
description: '(Required) Enter a postcode to validate',
},
{
displayName: 'Country (ISO 3166-1 Alpha-2)',
name: 'country_code',
type: 'string',
default: 'nl',
required: true,
displayOptions: {
show: {
resource: ['validation'],
operation: ['get_postcode']
},
},
routing: {
request: {
qs: {
country_code: '={{ $value ? $value : undefined }}',
},
},
},
description: '(Required) Enter a country code (ex: nl, us)',
}
];
//# sourceMappingURL=ValidationPostcodeGet.properties.js.map