I have a project where at a high level I want to validate the credit card information a user entered. If the card is valid then I'll perform some processing, then assuming the processing is successful charge the card that was validated in the first step. I see two ways to go about this, but wanted to get community feedback on which way is best
Option1
Option 2
In either case the time necessary to "do processing" is minimal as in sub second.
Two specific question I have are:
Any other feedback or insight is appreciated.
Solved! Go to Solution.
12-13-2016 12:41 PM
I ended up doing some of my own experimentation and had communications with a merchant account rep to come to a conclusion. For others looking to answer the same question here's what I decided.
For the following reasons I chose to implement Option 1
12-15-2016 09:01 AM
I ended up doing some of my own experimentation and had communications with a merchant account rep to come to a conclusion. For others looking to answer the same question here's what I decided.
For the following reasons I chose to implement Option 1
12-15-2016 09:01 AM
What did you find regarding the timeframes of an auth_only+void vs auth_capt + refund?
We have a situation where a customer is billing time, so we want to initially Auth_Only a certain amount, but if the job exceeds that, we want to void the original Auth_Only and submit a new Auth_only for a new amount. The problem were faced with asking is will this procedure tie up unnesseccary amounts of funds on the customers accounts to where they can't, or even we cant, run their cards. Or, once the processor receives the void that those funds will be released immediately to where we can submit a new Auth_Only and not run into any issues.
03-10-2020 06:52 AM