@vwork-digital/n8n-nodes-fillout
Version:
N8N nodes for Fillout forms - includes both trigger and action nodes.
37 lines • 1.21 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FilloutApi = void 0;
class FilloutApi {
constructor() {
this.name = 'filloutApi';
this.displayName = 'Fillout API';
this.documentationUrl = 'https://fillout.com/help/api-quickstart';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
description: 'Generate an API key in the Developer settings tab of your Fillout account',
},
{
displayName: 'API URL',
name: 'apiUrl',
type: 'string',
default: 'https://api.fillout.com',
description: 'The URL of the Fillout API',
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.apiKey}}',
},
},
};
}
}
exports.FilloutApi = FilloutApi;
//# sourceMappingURL=FilloutApi.credentials.js.map