Dear stackoverflow members,
I'm a developer who wants to implement an online payment service (this is my first time working on a custom payment service module) for one of our clients, and they have suggested to use PayPal.
The scenario I have is like this:
The website will offer users to create projects they need funding to complete, the project owner should specify how much funding he needs and the time needed to collect this fund: Example: "User-1" creates a new project Called "Project-1", he needs "$1000" to complete his project, and the time to collect this fund is "1 week".
Now other users can help (support) this guy by donating money to his project in different amounts: "$1", "$10", "$100", etc ...
What I need to implement using PayPal services is to hold the money from the "Supporters" in their accounts or any place, and after the "1 week" period has finished for collecting funds, the system will evaluate if the target budget has been reached or not, this means if "Project-1" fund raising reached "$1000" or not.
If the fund was successful (it reached "$1000") the money will be deducted from the supporters (donators) accounts and sent to the project owner "User-1" (there will be fees for PayPal and the system), but if the fund was a failure, the money will not be deducted and the supporters (donators) will have there money back (remove the hold on this money).
Is this something that can be done with PayPal services? or shall I investigate another approach?
I tried and searched allot in PayPal documentations and many articles, but they all refer to direct payments and refunding operations, this will cost the system money since PayPal will deduct the fees on paying and refunding.
I really appreciate any help on this matter.
Best Regards