cancel
Showing results for 
Search instead for 
Did you mean: 
AndrewTraub
Member
since ‎07-01-2016
‎01-05-2021

Your latest statistics

  • 1 Replies
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I'm trying to add the orderNumber to a subscription so that I can have two to the same customer (I'm getting duplicate submission errors). I've gone to the playground here: https://developer.authorize.net/api/reference/index.html#recurring-billing-cr...
I'm using the github code and trying to make a call from a node.js express route. The calling code is this:async charge(req, res) { try { const merchant = new authorizeNet(); const result = await merchant.chargeCreditCard(req.body); console.log('resu...
Here is my php code which has been working fine for ARB payments when they are successful: // Get the response code. 1 is success, 2 is decline, 3 is error$response_code = (int)$_POST['x_response_code'];if ($response_code == 1) { // Approved!..do imp...