tally.retryWebhookEvent requests immediate redelivery of one failed Tally webhook event.
Example
automations/tally-retry-webhook-event.automation.ts
Inputs
webhookId and eventId are required.
Pass account to select a named Tally connection.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Requests immediate redelivery of one failed Tally webhook event.
tally.retryWebhookEvent requests immediate redelivery of one failed Tally webhook event.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Retry webhook event", () => {
onHttpRequest({ scope: "automation" })
tally.retryWebhookEvent({
webhookId: "webhook-id",
eventId: "event-id",
})
})
webhookId and eventId are required.
Pass account to select a named Tally connection.