We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GatewayResponse.cs
public string ResponseCode { get { return ParseResponse(0); } }
Should be
public string ResponseCode { get { return ParseResponse(2); // <-- Bug Fix } }
The text was updated successfully, but these errors were encountered:
{"RawResponse":["3","1","6","The credit card number is invalid.", ...]}
0 = Code 1 = SubCode 2 = ResponseCode 3 = Message
Sorry, something went wrong.
Fix issue AuthorizeNet#60 - decimal based fields are incorectly forma…
45cb0c0
…tted for api if the clients local includes a number format that does not match US format.
@Dthurman You referenced the wrong issue. You referenced #60 instead of #59 for that fix.
Fix DotNet SDK Isseue AuthorizeNet#60. ResponseCode property now retu…
a3fa731
…rns ParseResponse(2) instead of value at index 0.
Merge pull request #65 from Dthurman/master
42f6b6d
Update to fix issue #60 in sdk-dotnet
2a0df92
No branches or pull requests
GatewayResponse.cs
Should be
The text was updated successfully, but these errors were encountered: