UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

35 lines 1.22 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AdaloApi = void 0; class AdaloApi { name = 'adaloApi'; displayName = 'Adalo API'; documentationUrl = 'adalo'; properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, default: '', description: 'The Adalo API is available on paid Adalo plans, find more information <a href="https://help.adalo.com/integrations/the-adalo-api" target="_blank">here</a>', }, { displayName: 'App ID', name: 'appId', type: 'string', default: '', description: 'You can get App ID from the URL of your app. For example, if your app URL is <strong>https://app.adalo.com/apps/1234567890/screens</strong>, then your App ID is <strong>1234567890</strong>.', }, ]; authenticate = { type: 'generic', properties: { headers: { Authorization: '=Bearer {{$credentials.apiKey}}', }, }, }; } exports.AdaloApi = AdaloApi; //# sourceMappingURL=AdaloApi.credentials.js.map