mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
32 lines
587 B
TypeScript
32 lines
587 B
TypeScript
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}}',
|
|
},
|
|
},
|
|
};
|
|
}
|