UNPKG

@kadam-net/n8n-nodes-kadam

Version:

Kadam node for n8n to manage campaigns, creatives, and more.

30 lines 1.14 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.KadamApi = void 0; class KadamApi { constructor() { this.name = 'kadamApi'; this.displayName = 'Kadam API'; this.documentationUrl = 'https://wiki.kadam.net/index.php?title=API-1.4.x#API_авторизация_с_помощью_Bearer_Token'; this.properties = [ { displayName: 'API Token', name: 'apiToken', type: 'string', default: '', required: true, description: 'Bearer Token obtained from your Kadam manager or account settings. Used in the Authorization header as "Bearer <token>".', }, { displayName: 'App ID', name: 'appId', type: 'string', default: '', required: true, description: 'Application ID used in all API requests. You can obtain it from your Kadam manager.', }, ]; } } exports.KadamApi = KadamApi; //# sourceMappingURL=KadamApi.credentials.js.map