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 d57d035 commit 98e30d5Copy full SHA for 98e30d5
apify-api/openapi/code_samples/javascript/act_runs_post.js
@@ -5,6 +5,6 @@ const apifyClient = new ApifyClient({
5
});
6
const run = await apifyClient
7
.actor('<ACTOR ID>')
8
- .start({ /** <ACTOR INPUT> */ });
+ .start({ 'foo': 'bar' });
9
10
console.log(run);
apify-api/openapi/code_samples/javascript/actorTask_input_put.js
const updatedInput = await apifyClient
.task('<TASK ID>')
- .updateInput({ /** NEW INPUT */ });
+ .updateInput({ 'foo': 'baz' });
console.log(updatedInput);
0 commit comments