Interface WebhookEventProcessSuccessEvent

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: "webhook"
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
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"