n8n/packages/nodes-base/credentials/ProfitWellApi.credentials.ts

21 lines
434 B
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class ProfitWellApi implements ICredentialType {
name = 'profitWellApi';
displayName = 'ProfitWell API';
documentationUrl = 'profitWell';
properties: INodeProperties[] = [
{
displayName: 'API Token',
name: 'accessToken',
type: 'string',
typeOptions: { password: true },
default: '',
description: 'Your Private Token',
},
];
}