1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "emailRecipients": [],
12 "actorNameInclude": [
13 "actor-name"
14 ],
15 "actorNameExclude": [
16 "testing-actor"
17 ],
18 "taskNameInclude": [],
19 "customDimensions": [
20 {
21 "field": "actorName",
22 "label": "Actor Name",
23 "fallback": "Unknown Actor"
24 },
25 {
26 "field": "status",
27 "label": "Run Status",
28 "fallback": "Unknown Status"
29 }
30 ]
31};
32
33
34const run = await client.actor("hamza.alwan/actors-monitoring").call(input);
35
36
37console.log('Results from dataset');
38console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
39const { items } = await client.dataset(run.defaultDatasetId).listItems();
40items.forEach((item) => {
41 console.dir(item);
42});
43
44