I want to implement Mollie payment gateway with iDeal and credit card method and wants to implement Recurring Payments with it (i.e. weekly, monthly, etc). I am doing it using PHP.
Does anyone help me in that, because there isn't any help available on API related to this.
How we can achieve that ?
Thanks.
Mollie only launched recurring payments in 2016, so it's not that surprising you din't find anything previously. Have a look here:
https://www.mollie.com/nl/recurring
There are some PHP modules for mollie you can use. Most of them have README's on the GitHub.
And there is the API reference documentation
Related
Following paypal documentation
i have setup Delayed Chained Payment Using Adaptive Payments but i cannot see any reference for how to get refunds. Can anyone please help in this regard?
The information you are looking for can likely be found in this document
I trying to implement a recurring payments for a web application with inituit payments.
I was searching a lot but couldnt find much detail documentation which has a good flow. Is there any specific links or examples which I can see.
I came across this question it is a good one but not recurring payments again.
Implement Payment Process With Quickbook(Intuit Payment)
I want my app to obtain the payment details from the client and process it via the gateway.
thanks
i found this as the starting point for the payments
https://developer.intuit.com/docs/030_qbms
but still wanting to find the XML requests
Working with Paypal API is the worst experience so far for me as a developer. Can anyone point me to a simplified php class to do recurring payments (yearly fee). I've been searching for one but found too many with too many differences, some say it's for recurring payments some for subscriptions. What I really need is recurring until the user cancels the membership, so no end date specified.
Any help is greatly appreciated.
Check this https://www.paypal.com/pdn-recurring
This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
Credit card payment gateway in PHP?
I am looking for a solid credit card solution and we are not interested in PayPal. I am currently unsure about the volume of transactions. Someone suggested merchantone but after looking at some reviews i have my apprehensions. Idealling something around a ~2% transaction charge, with some monthly fees.
What do you guys suggest, we need a flexible API which we can utilize easily with PHP. Any recommendations will be helpful.
The Authorize.Net payment gateway API is by far the easiest to use. They provide sample code and there are good classes and tutorials out there, too.
To use Authorize.Net you would need a separate merchant account. There are lots of providers out there and their rates and fees will vary. But all of them work with Authorize.Net. Your merchant account provider can set you up with them or you can choose from any of their resellers to get an account.
I've done custom integrations with PayPal's PayFlow pro, Firstdata (used to be LinkPoint), and authorize.net... and would have to say authorize.net was by far the best to work with. Their API is heaps less complicated than FirstData's (in my opinion), and they generally have better support.
How about Authorize.net?
http://www.authorize.net/
Or google checkout?
http://checkout.google.com
I'm wondering if it's possible to use Paypal Adaptive Payments in the way that Kickstarter.com are using Amazon Payments to collect/fundraise.
For example: A user sets up a project. People pledge $5 to that project, and if it meets a goal, the system then automatically extracts the money from everyone, and puts it into user who created the projects paypal account. Is this possible using Paypal?
Are there any good PHP libraries supporting Adaptive Payments, if this is possible?
I was also looking for the same answer since I am working on a similar crowdfunding platform as Kickstarter is, but I need to use PayPal.
After a lot of Googling and reading about PayPal's Adaptive Payments API I found out that it's possible by using the Preapproval API and then if the project is funded I can use Chained Payments to send the money to the project creator and to also retain a small fee (a percentage) for using the crowdfunding platform.
If you are looking for some PHP libraries you can found 2 versions at the links below.
One is a library for the CodeIgniter framework and the other one is a PHP API class that can be used anywhere. So, here are the links:
CodeIgniter Library - http://www.binpress.com/app/paypal-adaptive-payments-pro-codeigniter-library/140
PHP API Class - http://www.binpress.com/app/php-paypal-pro-adaptive-api-class/612
I see now that your question is 2 years old, I just hope this answer helps others looking for answers regarding PayPal's Adaptive Payments API.
Yes, it is possible using the Adaptive Payments Preapproval API. When someone 'pledges' would be when you set up the preapproval, and then you can run that preapproved transaction at some future time without any additional interaction required.
PayPal has developed a PHP SDK with libraries and examples to get you started.
If you're going to use PayPal, there's a good Ruby gem: adaptivepayments-sdk-ruby
This answer is a couple of years late but better late than never! The one downside to using the Adaptive Payments Preapproval API for a Kickstarter type of system is that you can't guarantee the "pledge" will be valid when you go to make the withdrawal, since it is possible for the user to cancel their pledge at any time.
I've been working on a crowdfunding project similar to kickstarter. I started out using paypal's adaptive payments for this kind of thing but I eventually switched to wepay's preapproval api. I'm glad I did. For one thing, their documentation is clearer and better organized with good examples in PHP, Ruby and Python.