mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
35 lines
722 B
TypeScript
35 lines
722 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: '',
|
|
},
|
|
{
|
|
displayName: 'API Domain',
|
|
name: 'apiDomain',
|
|
type: 'options' as NodePropertyTypes,
|
|
options: [
|
|
{
|
|
name: 'api.jotform.com',
|
|
value: 'api.jotform.com',
|
|
},
|
|
{
|
|
name: 'eu-api.jotform.com',
|
|
value: 'eu-api.jotform.com',
|
|
},
|
|
],
|
|
default: 'api.jotform.com',
|
|
description: 'The API domain to use. Use "eu-api.jotform.com" if your account is in based in Europe.',
|
|
},
|
|
];
|
|
}
|