n8n/packages/nodes-base/credentials/FortiGateApi.credentials.ts
2023-08-09 15:16:11 +02:00

32 lines
632 B
TypeScript

import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
export class FortiGateApi implements ICredentialType {
name = 'fortiGateApi';
displayName = 'Fortinet FortiGate API';
documentationUrl = 'fortigate';
icon = 'file:icons/Fortinet.svg';
properties: INodeProperties[] = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
typeOptions: { password: true },
default: '',
required: true,
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
qs: {
access_token: '={{$credentials.accessToken}}',
},
},
};
}