@using BTCPayServer.Client @model WebhooksViewModel @{ ViewData.SetLayoutModel(new LayoutModel(nameof(StoreNavPages.Webhooks), StringLocalizer["Webhooks"]).SetCategory(WellKnownCategories.Store)); }

Webhooks allow BTCPay Server to send HTTP events related to your store to another server.

@if (Model.Webhooks.Any()) {
@foreach (var wh in Model.Webhooks) { }
Status Url Actions
@if (wh.LastDeliverySuccessful) { } else { } @wh.Url Modify - Delete
} else {

There are no webhooks yet.

}
@section PageFootContent { }