btcpayserver/BTCPayServer.Client/BTCPayServerClient.Health.cs
2020-04-21 16:29:54 +02:00

17 lines
502 B
C#

using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using BTCPayServer.Client.Models;
namespace BTCPayServer.Client
{
public partial class BTCPayServerClient
{
public virtual async Task<ApiHealthData> GetHealth(CancellationToken token = default)
{
var response = await _httpClient.SendAsync(CreateHttpRequest("api/v1/health", bodyPayload: new {}), token);
return await HandleResponse<ApiHealthData>(response);
}
}
}