I working in paypal credit card configuration in YII framework But I`m struggling to config paypal credit card in YII and Paypal version:53.0.
Errors: [L_ERRORCODE0] => 10752
kindly provide me procedure for paypal credit card config in YII framework.
I found what the error message you are receiving indicates. This comes from the PayPal Developer site:
10752 Gateway Decline This transaction cannot be processed. The transaction was declined by the issuing bank, not PayPal. The merchant should attempt another card. DoDirectPayment
PayPal API Error Codes
That particular error message means that the credit card was declined. That is a valid response to a DoDirectPayment API Call.
Related
PayPal Guest check out denying payments but not returning error codes to PayPal Manager. How how do I get data for denied transaction attempts moving forward? We need to track the code PayPal sends us when they reject a credit card. We are using PayPal Adaptive Payments API on a .NET platform.
manager.paypal.com will only show codes returned by the Payflow API (payflowpro.paypal.com) and the Payflow Link web application (payflowlink.paypal.com)
Adaptive Payments uses the endpoint svcs.paypal.com , and its API responses and web declines are not reported or tracked anywhere , much less in manager.paypal.com which is a separate system
If you are indeed using Adaptive Payments, you need to log your own API call responses.
on my website, i have a module which create a connection with paypal payment.
I have an error with it. (phoca cart with joomla)
code: NO_BUSINESS
I don't understand my error.
thx
What is the integration type? If it is PayPal Payments Standard, "business" is a required parameter that should correspond to the PayPal account that is to receive the payment
https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/
We are having major trouble when we pay using direct credit card payment from mobile application development. To the live transaction we cannot able to use direct credit card payment.
While using Credit Card: "The merchant does not accept payments of this type."
We are developing the mobile application using ionic framework. Using the ionic-paypal plugin we implemented and Sandbox flow has been verified success using Paypal REST API. For the live account not working. Paypal develper page i cannot able to enable the "credit card payment" from the following url "https://developer.paypal.com/developer/accountStatus"
Any additional permission require to live transaction or any other steps and solutions to complete this
PayPal REST API Credit Card payment instrument currently available for US and UK PRO account. If you tried with some other countries except from these two, you'll get an error.
You can read here
I just integrated the PayPal Express Checkout for my shopping cart with basic client integration. I used the sandbox environment for integration testing and everything works well if the sandbox test account ("PERSONAL") of the sandbox environment has either a positive PayPal balance or a credit card deposited to the sandbox test account.
But if the sandbox test account has only a debit card deposited, then it is not possible to charge the PayPal account, I receive following error due to actions.payment.execute() in the onAuthorize callback:
POST https://www.sandbox.paypal.com/.../createpayment - 400 Bad Request
with JSON response field contingency set to PAYMENT_NOT_APPROVED_FOR_EXECUTION.
I am using exactly the same JavaScript code for my application as in the basic client integration example provided by PayPal, I just changed the 'env' to sandbox and edited my sandbox API key. I am wondering why this error is thrown when using debit card as payment method since I know from private use of PayPal that it is possible to pay with PayPal deposited debit card directly. Or is this just a sandbox specific error?
So I am trying to process a credit card transaction with the PayPal Payflow API using a transparent redirect. I am getting an error that it cannot process the credit card. When I look at the transaction history in the PayPal account manager the response message is Invalid tender. The manager also only shows the card EXP date. It looks like the credit card number is not making it to PayPal.
Here is the post string that is being sent in the header :
PARMLIST:INVNUM=794487634&AMT=78.04&CURRENCY=USD&ACCT=4111111111111111&EXPDATE=0920&csc=123
The paypal documentation for transparent redirect mentions only 3 parameters(Acct, expdate and csc) but another required parameter "TENDER" is missing in that, for credit card transaction your PARMLIST parameter should look like:
PARMLIST:INVNUM=794487634&AMT=78.04&CURRENCY=USD&ACCT=4111111111111111&EXPDATE=0920&csc=123&TENDER=C
//C is for credit card