How to configure paypal payment method in opencart?
Please refer below url it's may be help you
Setup Paypal Payment methods
Related
I need to integrate PayPal Payment in my website, but I need that an user pay a product to another user. How can I do that?
Note: I never did nothing related to PayPal payments, so if you someone can give me a clear help I appreciate.
Integrate a version of PayPal Checkout, and set the custom payee variable
https://developer.paypal.com/docs/checkout/integration-features/custom-payee/
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/
I am using PayPal payment gateway for recurring payment purpose but i want to get details of each done weekly/monthly/yearly payment when payment made on each recurrence .
Can anybody help me? or suggest me how can i check recurring payment has made or not& get there details for each week/month/year.
Thanks
Amol
i got solution
I have set notification url in my paypal account
this url hit every transaction so i got all details for that transaction when transaction done.
Notification url is url of my project where i want request data.
i am using Paypal manager for the payment i successfully done with credit card payment with recurring payment profile from my website using PayPal manager. but now i want do recurring payment with express checkout using Paypal manager with recurring payment. i am able to do simple direct payment with express checkout using PayPal manager. i found some solution from google that we need to pass two variable
L_BILLINGAGREEMENTDESCRIPTION0 = "Your descriptor"
L_BILLINGTYPE0 = "RecurringPayments"
But i am not able to do recurring payment. I am not getting any error. but my payment have done simple payment not recurring.
Thanks in advance..
There are two things with Express Checkout. First you need to let know the whole process that you will also create some recurring payment profiles.
For that you set BillingType as RecurringPayments when you do doExpressCheckout request.
You will get the Token from paypal and later when user will be back on your site to confirm payment after signing in to Paypal you can use this token to create recurring payment profile the same way as you have done that with credit card.
So after confirming instead of sending doExpressCheckoutPayment you send createRecurringPaymentProfile request.
Of course you can also send doExpressCheckoutPayment if you want also to do some additional payment that is not recurring.
is it possible to make a payment with user's paypal balance using Direct Payment? I know that Direct Payment offers recurring payments but I'd like to use it not only for credit cards but for paypal account balance too. Is it possible or not at all?
Thanks
Only the Express Checkout paypal api allows it...
Check out the documentation for paypal's Express Checkout
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_WPGettingStarted
I do not believe that the Direct Payment option allows it at all.