We are Making a App in which We Take Payments from Customers and Give Them Points same like Customer can give Points to Us and Take Payment . This is a Game is there any payment Gate Way That Directly Paid Customer in his/her Credit Card we want Payments Direct Credit Cards To Credit Cards we will take customer credit cards when he will signup or later when he will give us points for Payment Any Suggestion will be Appreciated
1 Answers
For PayPal, look at the following.
DoReferenceTransaction - This will allow you to hit somebody's credit card to process an amount without authentication so long as you've done a prior Authorization or Sale using the same credit card. So you could have people run an Authorization on their card just to ensure it's good and get a transaction ID that you can use in future DRT requests.
DoNonReferencedCredit - This will allow you to load funds onto a credit card without referencing any previous transaction (so it's different than a refund.) Keep in mind that when you send somebody money this way you won't get refunded fees like you would if you used the actual RefundTransaction API, so you may want to consider that.
You'll want to go through the detailed documentation for Reference Transactions, of course, to get a good understanding of it.
You'll also need a Payments Pro account to be able to process credit cards directly and utilize these features.
If you happen to be working with PHP I'd recommend using my class library for PayPal. It'll make the API calls very simple for you.

- 25,968
- 5
- 32
- 51
-
Nice Thanks .what about Stripe? – user1138383 Apr 27 '14 at 09:24
-
Stripe makes you wait 7 - 10 days (or more) for your money. That could cause issues with what you're explaining you're trying to do I would think. – Drew Angell Apr 27 '14 at 09:25
-
i read from stripe doc they transfer fund only in USA any other cool payment gate way that allow me to transfer funds through CC to CC? – user1138383 Apr 27 '14 at 09:29
-
are you sure we can transfer funds to customer?DoNonReferencedCredit have nothing param to transfer – user1138383 Apr 27 '14 at 15:36
-
DNRC allows you to push funds to a credit card from your PayPal account. – Drew Angell Apr 27 '14 at 20:44