UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

34 lines 932 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SekoiaApi = void 0; class SekoiaApi { name = 'sekoiaApi'; displayName = 'Sekoia API'; icon = 'file:icons/Sekoia.svg'; documentationUrl = 'sekoia'; httpRequestNode = { name: 'Sekoia', docsUrl: 'https://docs.sekoia.io/cti/features/integrations/api/', apiBaseUrl: 'https://api.sekoia.io/', }; properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, required: true, default: '', }, ]; authenticate = { type: 'generic', properties: { headers: { Authorization: '=Bearer {{$credentials.apiKey}}', }, }, }; } exports.SekoiaApi = SekoiaApi; //# sourceMappingURL=SekoiaApi.credentials.js.map