n8n/packages/nodes-base/credentials/JotFormApi.credentials.ts
Ricardo Espinoza 865393fba7 jotform-trigger
2020-01-20 16:52:34 -05:00

18 lines
309 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class JotFormApi implements ICredentialType {
name = 'jotFormApi';
displayName = 'JotForm API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}