@model WebhooksViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePageAndTitle(StoreNavPages.Webhooks, "Webhooks", Context.GetStoreData().StoreName); }

@ViewData["PageTitle"]

Create a new webhook

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 { }