n8n/packages/nodes-base/credentials/QRadarApi.credentials.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
587 B
TypeScript
Raw Normal View History

import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
export class QRadarApi implements ICredentialType {
name = 'qRadarApi';
displayName = 'QRadar API';
icon = 'file:icons/IBM.svg';
documentationUrl = 'qradar';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
required: true,
default: '',
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
SEC: '={{$credentials.apiKey}}',
},
},
};
}