UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

34 lines 922 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.QRadarApi = void 0; class QRadarApi { name = 'qRadarApi'; displayName = 'QRadar API'; icon = { light: 'file:icons/IBM.svg', dark: 'file:icons/IBM.dark.svg' }; documentationUrl = 'qradar'; httpRequestNode = { name: 'QRadar', docsUrl: 'https://www.ibm.com/docs/en/qradar-common', apiBaseUrl: '', }; properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, required: true, default: '', }, ]; authenticate = { type: 'generic', properties: { headers: { SEC: '={{$credentials.apiKey}}', }, }, }; } exports.QRadarApi = QRadarApi; //# sourceMappingURL=QRadarApi.credentials.js.map