diff --git a/BTCPayServer/Plugins/Shopify/ShopifyApiClient.cs b/BTCPayServer/Plugins/Shopify/ShopifyApiClient.cs index 44717bfa2..2f3539472 100644 --- a/BTCPayServer/Plugins/Shopify/ShopifyApiClient.cs +++ b/BTCPayServer/Plugins/Shopify/ShopifyApiClient.cs @@ -118,7 +118,7 @@ namespace BTCPayServer.Plugins.Shopify public async Task CancelOrder(string orderId) { var req = CreateRequest(_credentials.ShopName, HttpMethod.Post, - $"orders/{orderId}/close.json", null, "2024-04"); + $"orders/{orderId}/cancel.json?restock=true", null, "2024-04"); var strResp = await SendRequest(req);