n8n-nodes-base
Version:
Base nodes of n8n
40 lines • 1.23 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JotFormApi = void 0;
class JotFormApi {
name = 'jotFormApi';
displayName = 'JotForm API';
documentationUrl = 'jotform';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
{
displayName: 'API Domain',
name: 'apiDomain',
type: 'options',
options: [
{
name: 'api.jotform.com',
value: 'api.jotform.com',
},
{
name: 'eu-api.jotform.com',
value: 'eu-api.jotform.com',
},
{
name: 'hipaa-api.jotform.com',
value: 'hipaa-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.',
},
];
}
exports.JotFormApi = JotFormApi;
//# sourceMappingURL=JotFormApi.credentials.js.map