Calendly Trigger

This commit is contained in:
Ricardo
2020-03-10 12:42:57 -04:00
parent 312f960535
commit 6222861912
5 changed files with 219 additions and 2 deletions

View File

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