@using BTCPayServer.Abstractions.Extensions @model List @{ ViewData["NavPartialName"] = "../UIStores/_Nav"; Layout = "../Shared/_NavLayout.cshtml"; var storeId = Context.GetStoreData().Id; ViewData.SetActivePage("PayoutProcessors", "Payout Processors", storeId); }

@ViewData["Title"]

Payout Processors allow BTCPay Server to handle payouts in an automated way.

@if (Model.Any()) { foreach (var processorsView in Model) {

@processorsView.Factory.FriendlyName

@foreach (var conf in processorsView.Configured) { }
Payment Method Actions
@conf.Key.ToPrettyString() @if (conf.Value is null) { Configure } else { Modify - Remove }
} } else {

There are no processors available.

}
@section PageFootContent { }