n8n/packages/nodes-base/credentials/ProfitWellApi.credentials.ts
2021-06-12 18:39:55 +02:00

20 lines
393 B
TypeScript

import {
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',
default: '',
description: 'Your Private Token',
},
];
}