Files
Automata/packages/nodes-base/nodes/Mattermost/v1/actions/message/postEphemeral/execute.ts
Iván Ovejero d9b98fc8be refactor: Lint for no unneeded backticks (#5057) (no-changelog)
*  Create rule `no-unneeded-backticks`

* 👕 Enable rule

*  Run rule on `cli`

*  Run rule on `core`

*  Run rule on `workflow`

*  Rule rule on `design-system`

*  Run rule on `node-dev`

*  Run rule on `editor-ui`

*  Run rule on `nodes-base`
2022-12-29 12:20:43 +01:00

27 lines
730 B
TypeScript

import { IExecuteFunctions } from 'n8n-core';
import { 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);
}