n8n-nodes-agentic-hub
Version:
n8n community node for Agentic Hub API integration - Send messages to conversational AI workflows
38 lines • 1.17 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AgenticHubApi = void 0;
class AgenticHubApi {
constructor() {
this.name = 'agenticHubApi';
this.displayName = 'Agentic Hub API';
this.documentationUrl = 'https://app.agentic-hub.ai';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
required: true,
},
{
displayName: 'Company ID',
name: 'companyId',
type: 'string',
default: '',
required: true,
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.apiKey}}',
'Company-ID': '={{$credentials.companyId}}',
},
},
};
}
}
exports.AgenticHubApi = AgenticHubApi;
//# sourceMappingURL=AgenticHubApi.credentials.js.map