0

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

user1138383
  • 115
  • 2
  • 2
  • 10

1 Answers1

1

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.

Drew Angell
  • 25,968
  • 5
  • 32
  • 51