Is there a way to use the API to determine the card type?
I am looking for a more reliable way than asking the cardholder, as sometime they choose the wrong type.
09-21-2017 06:35 AM
For Customer Payment Profiles, your can include:
<includeIssuerInfo>true</includeIssuerInfo>
<getCustomerPaymentProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd">
<merchantAuthentication>
<name***</name>
<transactionKey>***</transactionKey>
</merchantAuthentication>
<customerProfileId>47997</customerProfileId>
<customerPaymentProfileId>40097210</customerPaymentProfileId>
<includeIssuerInfo>true</includeIssuerInfo>
</getCustomerPaymentProfileRequest>and get back :
<issuerNumber>411111</issuerNumber>
To get IIN information before or after payments, we have created an system that returns detailed results: https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/New-Support-for-Issuer...
09-21-2017 07:09 AM
Thank you for the response.
1) Is the IIN lookup a separate service you provide?
2) And isn't there the possibility the IIN would not be in the database?
09-21-2017 07:13 AM
Yes, to both questions. Though, the database is constantly being updated and currently has more than 300,000 IINs.
09-21-2017 07:20 AM - edited 09-21-2017 07:22 AM