UNPKG

n8n-nodes-netbox

Version:

n8n community node for NetBox API integration with comprehensive DCIM, IPAM, and data center management operations

36 lines (35 loc) 1.12 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NetBoxApi = void 0; class NetBoxApi { name = 'netBoxApi'; displayName = 'NetBox API'; documentationUrl = 'https://netbox.readthedocs.io/en/stable/rest-api/'; properties = [ { displayName: 'API URL', name: 'url', type: 'string', default: 'https://netbox.example.com', required: true, description: 'The URL of your NetBox instance (without /api/)', }, { displayName: 'API Token', name: 'token', type: 'string', typeOptions: { password: true }, default: '', required: true, description: 'API token for NetBox authentication', }, { displayName: 'Verify SSL Certificate', name: 'sslVerify', type: 'boolean', default: true, description: 'Whether to verify SSL certificates. Set to false for self-signed certificates.', }, ]; } exports.NetBoxApi = NetBoxApi;