n8n/packages/nodes-base/credentials/UrlScanIoApi.credentials.ts
Iván Ovejero d0c9120031
refactor(nodes-base): Apply lint rule cred-class-field-authenticate-type-assertion (#4057)
👕 Apply `cred-class-field-authenticate-type-assertion`
2022-09-09 10:35:50 +02:00

37 lines
674 B
TypeScript

import {
IAuthenticateGeneric,
ICredentialTestRequest,
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class UrlScanIoApi implements ICredentialType {
name = 'urlScanIoApi';
displayName = 'urlscan.io API';
documentationUrl = 'urlScanIo';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
required: true,
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
'API-KEY': '={{$credentials.apiKey}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: 'https://urlscan.io',
url: '/user/quotas',
},
};
}