Files
Automata/packages/nodes-base/nodes/Mattermost/v1/actions/channel/create/execute.ts
कारतोफ्फेलस्क्रिप्ट™ 7a4e9ef5fa refactor: Remove n8n-core dependency in nodes-base (no-changelog) (#5649)
2023-03-09 18:13:15 +01:00

25 lines
844 B
TypeScript

import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
import { apiRequest } from '../../../transport';
export async function create(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const body = {} as IDataObject;
const qs = {} as IDataObject;
const requestMethod = 'POST';
const endpoint = 'channels';
const type = this.getNodeParameter('type', index) as string;
body.team_id = this.getNodeParameter('teamId', index) as string;
body.display_name = this.getNodeParameter('displayName', index) as string;
body.name = this.getNodeParameter('channel', index) as string;
body.type = type === 'public' ? 'O' : 'P';
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
return this.helpers.returnJsonArray(responseData as IDataObject[]);
}