diff --git a/src/Smartstore.Modules/Smartstore.PayPal/Client/PayPalHttpClient.cs b/src/Smartstore.Modules/Smartstore.PayPal/Client/PayPalHttpClient.cs index 10ff680d0b..c7ffb166c8 100644 --- a/src/Smartstore.Modules/Smartstore.PayPal/Client/PayPalHttpClient.cs +++ b/src/Smartstore.Modules/Smartstore.PayPal/Client/PayPalHttpClient.cs @@ -343,8 +343,7 @@ public virtual async Task RefundPaymentAsync(RefundPaymentReques } var refundRequest = new CapturesRefundRequest(request.Order.CaptureTransactionId) - .WithBody(message) - .WithRequestId(request.Order.Id.ToString()); + .WithBody(message); var response = await ExecuteRequestAsync(refundRequest, request.Order.StoreId, cancelToken);