@using BTCPayServer.Abstractions.Models @using BTCPayServer.Client @using Microsoft.AspNetCore.Mvc.TagHelpers @model WebhooksViewModel @{ ViewData.SetActivePage(StoreNavPages.Webhooks, StringLocalizer["Webhooks"], Context.GetStoreData().Id); }

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 Test - Modify - Delete
} else {

There are no webhooks yet.

}
@section PageFootContent { }