vote up 0 vote down star

I'm building a site that requires paypal integration. The way it works is I have buyers and sellers, the buyer requests the item, and pays for the item, but the seller needs to accept the money first. So the money is held in limbo until the seller accepts it. Once accepted the money isn't transferred until the item has been received.

Can paypal do this? Also, can I do it with CakePHP?

flag
1  
Why, oh why would this belong on superuser? The question is valid, concerns the usage of a de-facto payment gateway and mentions a MVC framework being used. Its entirely programming related, non subjective and deserves an answer. – tinkertim Oct 21 at 13:24

3 Answers

vote up 0 vote down

As far as I know, there's no way to do this with a PayPal transfer.

A proper credit card processor like Authorize.net or PayPal's Payflow Pro service will let you place an authorisation hold on a credit card, and process the transaction at a later time.

link|flag
vote up 0 vote down

Why not just implement some kind of escrow service?

link|flag
Sounds like that's exactly the service that he intends to make. However, it may violate one of PayPal's many user agreements; see cms.paypal.com/cgi-bin/… for all the legalese. – ewall Oct 21 at 13:33
Twice the fees, too. – ceejayoz Oct 21 at 13:42
vote up 0 vote down

CakePHP:

In general:

  • PayPal API can be found under "developement" on their main site But as the people above said, be careful with PayPal. Try to make some kind of contract with them, which ensures that your money won't get busted. (If you are willed to do high volume transfers via PayPal)

Tip: Always use bakery.cakephp.org, to find the best cake tutorials ;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.