
Power Webhook Integration
- pocesar/run-webhook-digest
- Modified
- Users 5
- Runs 52.6k
- Created by
Paulo Cesar
Allows you to provide multiple HTTP endpoints, that receive a more complete JSON from the run, and allow you to hit those endpoints using a proxy, and enable you to do conditional webhook calls with some lines of Javascript code and you can link/chain one actor to another
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running actors via the API in Apify Docs.
import { ApifyClient } from 'apify-client';
// Initialize the ApifyClient with API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare actor input
const input = {
"method": "POST",
"statuses": [
"ACTOR.RUN.SUCCEEDED",
"ACTOR.RUN.FAILED",
"ACTOR.RUN.TIMED_OUT"
],
"customData": {},
"transformEndpoint": async ({ Apify, url, dataset, requestQueue, keyValueStore, abort, data, input: { customData } }) => {
return data;
},
"triggerCondition": async ({ Apify, dataset, requestQueue, keyValueStore, abort, data, input: { customData } }) => {
return true;
}
};
(async () => {
// Run the actor and wait for it to finish
const run = await client.actor("pocesar/run-webhook-digest").call(input);
// Fetch and print actor results from the run's dataset (if any)
console.log('Results from dataset');
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
console.dir(item);
});
})();