Interface WebhookUpdateFailEvent

interface WebhookUpdateFailEventSanitised {
    category: "webhook";
    data: {
        error: {
            message: string;
            type: string;
        };
        id: string;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "webhook"
data: {
    error: {
        message: string;
        type: string;
    };
    id: string;
}

Type declaration

  • error: {
        message: string;
        type: string;
    }
    • message: string
    • type: string
  • id: string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"