@couleetech/n8n-nodes-enlightenedmsp
Version:
n8n node for EnlightenedMSP ticketing and workflow automation
31 lines (30 loc) • 845 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EnlightenedMspApi = void 0;
class EnlightenedMspApi {
constructor() {
this.name = 'enlightenedMspApi';
this.displayName = 'EnlightenedMSP API';
this.documentationUrl = '';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
'x-api-key': '={{$credentials.apiKey}}',
},
},
};
}
}
exports.EnlightenedMspApi = EnlightenedMspApi;