We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b6b34 commit c0c5212Copy full SHA for c0c5212
nodes/Apify/resources/actor-tasks/run-task/execute.ts
@@ -10,7 +10,7 @@ export async function runTask(this: IExecuteFunctions, i: number): Promise<INode
10
const actorTaskId = this.getNodeParameter('actorTaskId', i, undefined, {
11
extractValue: true,
12
}) as string;
13
- const input = this.getNodeParameter('input', i, {}) as object;
+ const input = this.getNodeParameter('customBody', i, {}) as object;
14
const waitForFinish = this.getNodeParameter('waitForFinish', i, null) as number | null;
15
const timeout = this.getNodeParameter('timeout', i, null) as number | null;
16
const memory = this.getNodeParameter('memory', i, null) as number | null;
0 commit comments