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

@ViewData["Title"]

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