interface Webhook {
    batchingEnabled: boolean;
    contentType: ContentType;
    createdAt: string;
    events: WebhooksModel.Event[];
    headers: Record<string, string>;
    id: number;
    isActive: boolean;
    name: string;
    payload: Record<string, any>;
    projectId: number;
    requestType: RequestType;
    updatedAt: string;
    url: string;
}

Properties

batchingEnabled: boolean
contentType: ContentType
createdAt: string
headers: Record<string, string>
id: number
isActive: boolean
name: string
payload: Record<string, any>
projectId: number
requestType: RequestType
updatedAt: string
url: string