n8n-nodes-hdw
Version:
n8n node to access Horizon Data Wave API services
37 lines • 1.18 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HDWLinkedinApi = void 0;
class HDWLinkedinApi {
constructor() {
this.name = 'hdwLinkedinApi';
this.displayName = 'HDW LinkedIn';
this.documentationUrl = 'https://horizondatawave.ai/redoc';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
required: true,
},
{
displayName: 'Account ID',
name: 'accountId',
type: 'string',
default: '',
description: 'Required for management API endpoints (chat, connections, posts, etc.)',
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
'access-token': '={{$credentials.apiKey}}',
},
},
};
}
}
exports.HDWLinkedinApi = HDWLinkedinApi;
//# sourceMappingURL=HDWLinkedinApi.credentials.js.map