n8n-nodes-chatwork
Version:
Provides an n8n community node for integrating Chatwork messaging and task APIs into automated workflows.
10 lines • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.chatworkApiRequest = chatworkApiRequest;
function chatworkApiRequest(method, path) {
return this.helpers.httpRequestWithAuthentication.call(this, 'chatworkApi', {
method,
url: `https://api.chatwork.com/v2${path}`,
});
}
//# sourceMappingURL=transport.js.map