1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-08 10:39:01 +03:00
n8n/packages/nodes-base/credentials/HybridAnalysisApi.credentials.ts

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

38 lines
794 B
TypeScript
Raw Normal View History

import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
export class HybridAnalysisApi implements ICredentialType {
name = 'hybridAnalysisApi';
displayName = 'Hybrid Analysis API';
documentationUrl = 'hybridanalysis';
icon = 'file:icons/Hybrid.png';
httpRequestNode = {
name: 'Hybrid Analysis',
docsUrl: 'https://www.hybrid-analysis.com/docs/api/v2',
apiBaseUrl: 'https://www.hybrid-analysis.com/api/',
};
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
required: true,
default: '',
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
'api-key': '={{$credentials.apiKey}}',
},
},
};
}