Hi, I am using PayPal with NVP, Below is the request to SetExpressCheckout
string returnURL = "http://localhost:50325/GetExpressCheckout.aspx" + "?amount=" + Amount + "ยคcy=AUD"; string cancelURL = returnURL.Replace("ReviewOrder", "ExpCheckOut"); string strCredentials = "USER=" + strUsername + "&PWD=" + strPassword + "&SIGNATURE=" + strSignature; string strNVP = strCredentials; strNVP += "&PAYMENTACTION=Sale&AMT=" + Amount + "&BILLINGTYPE=MerchantInitiatedBilling" + "&RETURNURL=" + returnURL; strNVP += "&PAYMENTREQUEST_0_ITEMAMT=25&L_PAYMENTREQUEST_0_NAME0=Item1"; strNVP += "&CANCELURL=" + cancelURL; strNVP += "&METHOD=SetExpressCheckout&VERSION=" + strAPIVersion + "&NOSHIPPING=1"; HttpWebRequest wrWebRequest = (HttpWebRequest)WebRequest.Create(strNVPSandboxServer); wrWebRequest.Method = "POST";
1) After I am redirected to the PayPal page, I can see the Payment Methods option. I want to disable the Payment Methods option.

2) Or , if I click the change link, I can see the option as a bank account (eCheque) , I want to disable this option too. Below is an image. 
Any help on this.
source share