Questions tagged [authorize.net]

Authorize.Net is a popular payment gateway used to process credit card transactions.

Authorize.Net is a payment gateway service provider allowing merchants to accept credit card and electronic checks payments through their Web site and over an IP (Internet Protocol) connection. Authorize.Net claims a user base of over 350,000 merchants, which would make them the Internet's largest payment gateway service provider.

Source: Authorize.Net on Wikipedia

Useful Links

Developer Center
Github Repositories

Related Tags

1250 questions
29
votes
1 answer

Auth.net Issue on capture

My function to capture the transaction on auth.net is public function capture(Varien_Object $payment, $amount){ if(!$this->isEnabled()){ return parent::capture($payment, $amount); }else{ $captureCase =…
Zaffar Saffee
  • 6,167
  • 5
  • 39
  • 77
29
votes
1 answer

Using Bank Accounts With Authorize.Net C# SDK

After playing around with the Authorize.Net CIM XML API C# sample code, I started using the Authorize.Net C# SDK. I am able to add credit cards and bank accounts to customer profiles using the CIM XML API sample code. I don't see how to add bank…
Greg
  • 8,574
  • 21
  • 67
  • 109
17
votes
6 answers

Python/Django: Which authorize.net library should I use?

I need authorize.net integration for subscription payments, likely using CIM. The requirements are simple - recurring monthly payments, with a few different price points. Customer credit card info will be stored a authorize.net . There are quite a…
Parand
  • 102,950
  • 48
  • 151
  • 186
15
votes
2 answers

NodeJS SyntaxError: Unexpected token in JSON at position 0

The body of the response from Authorize.net's sandbox API is: { "messages": { "resultCode": "Error", "message": [ { "code": "E00012", "text": "You have submitted a duplicate of Subscription 5777085. A duplicate…
now_world
  • 940
  • 7
  • 21
  • 56
14
votes
2 answers

Apple Pay - authorize.net returns error 153 only when live, sandbox works

After searching a lot of articles i couldn't find a solution for my problem. I have integrated ApplePay button on my site and successfuly made transactions in sandbox mode. I'm using authorize.net php SDK to generate the request. The problems…
bksi
  • 1,606
  • 1
  • 23
  • 45
14
votes
1 answer

Authorize.net Payment in Magento does not show credit card form when selected

We have the onestepcheckout module installed and tried to enable authorize.net payment module by entering all the API info and transaction key properly. But on checkout, no credit card form shows when selecting authorize.net. We have also tried…
13
votes
2 answers

authorize.net test declines in test mode

Using Authorize.net in test mode, how I can test "declines"? If the test mode just approves all my transactions regardless of fake billing addresses ...
Nathan H
  • 48,033
  • 60
  • 165
  • 247
12
votes
4 answers

How to enable TLS 1.2 for API call in ASP.NET 2.0 application?

Our ASP.NET 2.0 website processes credit card transactions via calls to Authorize.Net's API. Authorize has informed us that on a date certain, to be announced, our client must utilize TLS 1.2 protocol for API calls. Microsoft seemed to indicate…
cjo30080
  • 534
  • 2
  • 7
  • 18
10
votes
4 answers

"Gateway error: (TESTMODE) The merchant login ID or password is invalid or the account is inactive.During PlaceOrder Authorised.net in magento"

I am facing error during the placeorder using method authorised.net in magento: "Gateway error: (TESTMODE) The merchant login ID or password is invalid or the account is inactive.
Bhavik
  • 183
  • 1
  • 1
  • 13
9
votes
1 answer

How to implement Authorize.NET Hosted Payments iFrame & Laravel

I found the official documentation and the github example provided by Authorize.NET to be a terribly confusing mess of stuff you don't need. This post is a summary of the last few hours work hoping it may help others. This guide assumes you don't…
Joel
  • 384
  • 5
  • 18
9
votes
1 answer

Is it possible to do credit card payments from a heroku server using activemerchant?

I'm building an app that needs to accept credit card payments with something like active merchant. In terms of security, is it possible for it to live on heroku and use authorize.net (or similar) as the payment gateway? What if it needs to store the…
James
  • 5,273
  • 10
  • 51
  • 76
9
votes
1 answer

one app with multiple merchant accounts attached!! apple pay

is it possible with apple pay if my app users want to pay their doctor (doctor can vary for patients) with apple pay? For Example A_patient pay to A_Doctor AND B_patient pay to some other doctor on same app basis on application data. And each doctor…
Ali
  • 514
  • 5
  • 16
9
votes
9 answers

Good authorize.net PHP libraries

I'm working on a PHP project and am looking for a good authorize.net gateway. I want something with mature code that's tested. The goal is to avoid writing and testing the entire thing myself based on the authorize.net api docs. Does anyone know of…
markwatson
  • 2,119
  • 3
  • 17
  • 20
9
votes
1 answer

Authorize.net CIM Duplicate Transaction Window

I'm working with Authorize.net's Customer Information Manager API (CIM). My test case is centered around a user giving the wrong address during checkout. My application will attempt to create a customer profile each time the user submits the…
Nick
  • 2,872
  • 3
  • 34
  • 43
8
votes
3 answers

How to get Credit Card Balance?

Is there ability to get in some way Balance on CreditCard ? API of Authorize.net or Paypal were examined on this subject and no results. In real life any cash terminal can show to you balance on your credit card. That is why I assume there is some…
1
2 3
83 84