24 lines
692 B
TypeScript
24 lines
692 B
TypeScript
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import { IDataObject, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import { apiRequest } from '../../../transport';
|
|
|
|
export async function invite(
|
|
this: IExecuteFunctions,
|
|
index: number,
|
|
): Promise<INodeExecutionData[]> {
|
|
const teamId = this.getNodeParameter('teamId', index) as string;
|
|
|
|
const emails = (this.getNodeParameter('emails', index) as string).split(',');
|
|
|
|
const qs = {} as IDataObject;
|
|
const requestMethod = 'POST';
|
|
const endpoint = `teams/${teamId}/invite/email`;
|
|
const body = emails;
|
|
|
|
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
|
|
|
|
return this.helpers.returnJsonArray(responseData);
|
|
}
|