freshdesk-node-setup

This commit is contained in:
Ricardo Espinoza
2019-11-06 19:58:18 -05:00
parent 419c22d584
commit 247954c0fa
5 changed files with 130 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class FreshdeskApi implements ICredentialType {
name = 'freshdeskApi';
displayName = 'Freshdesk API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}