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 53145cf commit 5088bfcCopy full SHA for 5088bfc
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({ 'foo': 'bar' });
+ .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({ 'foo': 'baz' });
+ .updateInput({ foo: 'baz' });
console.log(updatedInput);
0 commit comments