// This file is autogenerated, DO NOT EDIT // Use `node scripts/generate-docs-examples.js` to generate the docs examples [source, js] ---- const response = await client.watcher.executeWatch({ id: "my_watch", trigger_data: { triggered_time: "now", scheduled_time: "now", }, alternative_input: { foo: "bar", }, ignore_condition: true, action_modes: { "my-action": "force_simulate", }, record_execution: true, }); console.log(response); ----