The API documentation for the .NET SDK states that an AuthorizationRequest object is "A request that authorizes a transaction, no capture." However, the sample application shows the AuthorizationRequest class as the only request being sent to the gateway.
Which is correct, the samples or the documentation? Does the AuthorizationRequest class to an AUTH_CAPTURE transaction?
11-08-2010 05:55 AM
Hey jmorrison,
It looks like our documentation is incorrect on that one. We'll add this to our list of things to get updated.
Just some info though, the AuthorizationRequest will do a capture by default -- but you can override that by passing in a boolean parameter that turns the capture part off, making it so you just run an auth.
Thanks,
Michelle
Developer Community Manager
11-12-2010 11:17 AM
Just starting and looking at the sample code.
It has
var request = new AuthorizationRequest("4111111111111111", "1216", 10.00M,
"Test Transaction"); I understand it Authorizes and Captures.
To Authorize ONLY one would add "false" as a last parameter.
var request = new AuthorizationRequest("4111111111111111", "1216", 10.00M,"Test Transaction", false);
What do you use in the API to call Prior Authorization and Capture -- could not find in the samples or docs.
03-24-2012 06:46 PM
Try the CaptureRequest.
var request = new CaptureRequest();
I forget what the constructor parameters are.
03-26-2012 05:32 AM
Hi emstreet,
Did you find a solution for that?
I couldn't find a proper class in the SDK for NCP Prior Authorization and Capture.
Thanks,
Eyal
09-03-2013 06:06 AM
Hi Al, To meet PCI Compliance standards i am not saving card data on local db. I created card on AuthorizeNet servers and i have CardID returned from API. I need to Authorize a transaction but AuthorizeNet Authorization class demands following parameters:
Dim Obj as new AuthorizeNet.AuthorizationRequest(CardNumber, ExpMonthYear, Amount, Description, IncludeCapture)
I don't have credit card number and Expiry date saved and when i use to get a card it returns only last 4 digits of card number what to do?please help me out , how can i authorize a transaction without using card number and expiry?
Reply ASAP.
faheem
faheemsial@gmail.com
12-23-2013 11:51 PM
answer on your other post http://community.developer.authorize.net/t5/Integration-and-Testing/Authorization-Request-without-Cr...
12-24-2013 05:40 AM - edited 12-24-2013 05:41 AM