25 lines
724 B
TypeScript
25 lines
724 B
TypeScript
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import { apiRequest } from '../../../transport';
|
|
|
|
export async function postEphemeral(
|
|
this: IExecuteFunctions,
|
|
index: number,
|
|
): Promise<INodeExecutionData[]> {
|
|
const qs = {} as IDataObject;
|
|
const requestMethod = 'POST';
|
|
const endpoint = 'posts/ephemeral';
|
|
|
|
const body = {
|
|
user_id: this.getNodeParameter('userId', index),
|
|
post: {
|
|
channel_id: this.getNodeParameter('channelId', index),
|
|
message: this.getNodeParameter('message', index),
|
|
},
|
|
} as IDataObject;
|
|
|
|
const responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
|
|
|
|
return this.helpers.returnJsonArray(responseData as IDataObject[]);
|
|
}
|