Files
Automata/packages/nodes-base/nodes/BambooHr/v1/actions/file/update/execute.ts
2022-01-22 18:48:58 +01:00

35 lines
804 B
TypeScript

import {
IExecuteFunctions,
} from 'n8n-core';
import {
IDataObject,
INodeExecutionData,
} from 'n8n-workflow';
import {
apiRequest,
} from '../../../transport';
export async function update(this: IExecuteFunctions, index: number): Promise<INodeExecutionData[]> {
const body: IDataObject = {};
const requestMethod = 'POST';
//meta data
const fileId: string = this.getNodeParameter('fileId', index) as string;
//endpoint
const endpoint = `files/${fileId}`;
//body parameters
const shareWithEmployee = this.getNodeParameter('updateFields.shareWithEmployee', index, true) as boolean;
body.shareWithEmployee = shareWithEmployee ? 'yes' : 'no';
//response
await apiRequest.call(this, requestMethod, endpoint, body);
//return
return this.helpers.returnJsonArray({ success: true });
}