Never miss a webhook again. Our reliable webhook infrastructure gives you full visibility over your webhooks.
Emit new event when a new event is received from a HookDeck source.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
This endpoint lists all events, or a subset of events. See the documentation.
This endpoint lists all request, or a subset of requests. Requests are sorted by ingested_at
date. See the documentation.
This endpoint retries the events associated with a request. See the documentation.
The Hookdeck API facilitates the management of webhooks, providing reliable webhook delivery, monitoring, and debugging solutions. With this API on Pipedream, you can automate workflows concerning incoming webhook data—transforming, routing, and ensuring they trigger the subsequent actions without fail. This could range from logging data for analysis, conditionally processing and forwarding webhook events to other endpoints, or integrating with third-party services for extended automation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hookdeck: {
type: "app",
app: "hookdeck",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hookdeck.com/2023-01-01/events`,
headers: {
Authorization: `Bearer ${this.hookdeck.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.