Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Airtop/actions/extraction/scrape.operation.ts

17 lines
500 B
TypeScript

import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
import { executeRequestWithSessionManagement } from '../common/session.utils';
export async function execute(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const result = await executeRequestWithSessionManagement.call(this, index, {
method: 'POST',
path: '/sessions/{sessionId}/windows/{windowId}/scrape-content',
body: {},
});
return this.helpers.returnJsonArray({ ...result });
}