n8n-nodes-tess-ai-by-pareto
Version:
n8n community node for interacting with the Tess API by Pareto
16 lines (14 loc) • 386 B
text/typescript
import { ICredentialType, INodeProperties } from 'n8n-workflow';
export class TessApi implements ICredentialType {
name = 'tessApi';
displayName = 'Tess API';
documentationUrl = 'https://docs.tess.pareto.io/api/introduction';
properties: INodeProperties[] = [
{
displayName: 'API Token',
name: 'apiToken',
type: 'string',
default: '',
},
];
}