Interface WebhookCreateStartEvent

interface WebhookCreateStartEventSanitised {
    category: "webhook";
    data: {
        disabled: undefined | boolean;
        events: string[];
        url: string;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "webhook"
data: {
    disabled: undefined | boolean;
    events: string[];
    url: string;
}

Type declaration

  • disabled: undefined | boolean
  • events: string[]
  • url: string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"