Hi.
now i am using C# SDK for autorize.net integration for my asp.net website.
I call the function ValidateProfile for validating the payment method.
I got the following response(the successfull transaction response).
Code :
var gateway = GetCustomerGateway();
var response = gateway.ValidateProfile(profileId, creditCardId, AuthorizeNet.ValidationMode.LiveMode);
Response :
1,1,1,This transaction has been approved.,OBAU51,Y,2169938064,none,Test transaction for ValidateCustomerPaymentProfile.,0.00,CC,auth_only,,testfirst5,testlast5,,teststreet5,testcity4,Colorado,01823,
USA,,,testuser5@test.com,,,,,,,,,0.00,0.00,0.00,FALSE,none,D9E8B2ECE07713D74B75C0286629F098,,2,,,,,,,,,,,
XXXX0027,Visa,,,,,,,,,,,,,,,,
So i want to know the meaning of the each field.
I thought forth field is description (This transaction has been approved).
what is meaning of first 3 fields : 1,1,1
and then when the card is not valid, then which fields have a error message, and in which field, i can understand the card validation is failed or success.
I just need a detailed description of response string.
I can't find in googling.
Regards.
Solved! Go to Solution.
03-17-2012 09:08 AM
1 - Response code (should be 1 for success)
1 - Response subcode
1 - Response reason code (the one you look up if something goes wrong)
This transaction has been approved. - Response reason text
OBAU51 - Authorization code
Y - AVS response
2169938064 - Transaction ID
Etc. Look at the Transaction Response section of the AIM documentation PDF:
03-17-2012 10:37 AM
1 - Response code (should be 1 for success)
1 - Response subcode
1 - Response reason code (the one you look up if something goes wrong)
This transaction has been approved. - Response reason text
OBAU51 - Authorization code
Y - AVS response
2169938064 - Transaction ID
Etc. Look at the Transaction Response section of the AIM documentation PDF:
03-17-2012 10:37 AM