Interface WebhookEventProcessSuccessEvent
interface WebhookEventProcessSuccessEvent { category: "webhook"; data: { eventType: string; id: string; payload: string | { [
key:
string]
: unknown; }; url: string; webhookId: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface WebhookEventProcessSuccessEventSanitised { category: "webhook"; data: { eventType: string; id: string; payload: undefined; 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: {
eventType: string;
id: string;
payload: string | {
[key: string]: unknown;
};
url: string;
webhookId: string;
}
Type declaration
eventType: string
id: string
Sanitisation Level PII
payload: string | {
[key: string]: unknown;
}
url: string
webhookId: string
requestId
requestId: string
timestamp
timestamp: number