UNPKG

n8n-nodes-chatwoot

Version:

This is an n8n community node. It lets you use ChatWoot in your n8n workflows.

38 lines 1.3 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ChatWootTokenApi = void 0; class ChatWootTokenApi { constructor() { this.name = 'chatWootTokenApi'; this.displayName = 'ChatWoot Access Token API'; this.documentationUrl = 'https://github.com/sufficit/n8n-nodes-chatwoot/docs/auth'; this.properties = [ { displayName: 'ChatWoot API Url', name: 'baseUrl', placeholder: "https://www.chatwoot.com", type: 'string', default: '', required: true, }, { displayName: 'Access Token', name: 'accessToken', type: 'string', placeholder: "00000000-0000-0000-0000-000000000000", default: '', required: true, }, { displayName: 'Account Id', name: 'accountId', type: 'string', placeholder: "1", default: '1', required: true, }, ]; } } exports.ChatWootTokenApi = ChatWootTokenApi; //# sourceMappingURL=ChatWootTokenApi.credentials.js.map