17 lines
369 B
Plaintext
17 lines
369 B
Plaintext
// 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.ackWatch({
|
|
watch_id: "my_watch",
|
|
action_id: "test_index",
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.watcher.getWatch({
|
|
id: "my_watch",
|
|
});
|
|
console.log(response1);
|
|
----
|