interface AddWebhookRequest {
    batchingEnabled?: boolean;
    contentType?: ContentType;
    events: WebhooksModel.Event[];
    headers?: Record<string, string>;
    isActive?: boolean;
    name: string;
    payload?: Record<string, any>;
    requestType: RequestType;
    url: string;
}

Properties

batchingEnabled?: boolean
contentType?: ContentType
headers?: Record<string, string>
isActive?: boolean
name: string
payload?: Record<string, any>
requestType: RequestType
url: string