Webhook Delivery
Webhook delivery record with event, payload, signature, and delivery status.
api
Install
$ npx shadcn@latest add @open-types/webhook-delivery
Source
export type WebhookDeliveryStatus = "pending" | "delivered" | "failed";
export interface WebhookDelivery {
id: string;
event: string;
timestamp: string;
payload: Record<string, unknown>;
url: string;
signature?: string;
attempt: number;
max_attempts: number;
status: WebhookDeliveryStatus;
}
export type WebhookDeliveryStatus = "pending" | "delivered" | "failed";
export interface WebhookDelivery {
id: string;
event: string;
timestamp: string;
payload: Record<string, unknown>;
url: string;
signature?: string;
attempt: number;
max_attempts: number;
status: WebhookDeliveryStatus;
}