n8n/packages/nodes-base/credentials/QualysApi.credentials.ts
Elias Meire 14035e1244
feat(editor): Add HTTP request nodes for credentials without a node (#7157)
Github issue / Community forum post (link here to close automatically):

---------

Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2023-11-13 12:11:16 +01:00

63 lines
1.3 KiB
TypeScript

import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
export class QualysApi implements ICredentialType {
name = 'qualysApi';
displayName = 'Qualys API';
icon = 'file:icons/Qualys.svg';
documentationUrl = 'qualys';
httpRequestNode = {
name: 'Qualys',
docsUrl: 'https://qualysguard.qg2.apps.qualys.com/qwebhelp/fo_portal/api_doc/index.htm',
apiBaseUrl: 'https://qualysapi.qualys.com/api/',
};
properties: INodeProperties[] = [
{
displayName: 'Username',
name: 'username',
type: 'string',
default: '',
required: true,
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: { password: true },
default: '',
required: true,
},
{
displayName: 'Requested With',
name: 'requestedWith',
type: 'string',
default: 'n8n application',
description: 'User description, like a user agent',
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
'X-Requested-With': '={{$credentials.requestedWith}}',
},
auth: {
username: '={{$credentials.username}}',
password: '={{$credentials.password}}',
},
},
};
// test: ICredentialTestRequest = {
// request: {
// baseURL: 'https://qualysapi.qualys.com',
// url: '/api/2.0/fo/asset/host/?action=list',
// },
// };
}