Interface WebhookUpdateSuccessEvent

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

Properties

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

Type declaration

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