Interface WebhookEventProcessFailEvent
interface WebhookEventProcessFailEvent { category: "webhook"; data: { error: { message: string; type: string; }; eventType: string; id: string; url: string; webhookId: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface WebhookEventProcessFailEventSanitised { category: "webhook"; data: { error: { message: string; type: string; }; eventType: string; id: string; url: string; webhookId: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "webhook"
Sanitisation Level DATA
data
data: {
error: {
message: string;
type: string;
};
eventType: string;
id: string;
url: string;
webhookId: string;
}
Type declaration
error: {
message: string;
type: string;
}
message: string
type: string
eventType: string
id: string
url: string
webhookId: string
requestId
requestId: string
timestamp
timestamp: number