I am trying to use the JSON API to determine the card type that was used to make a payment on a Clover Flex device. I am able to find the card type via:
GET /v3/merchants/{ mid}/payments/?expand=cardTransaction
My issue with that particular call is the extra data that comes back by expanding cardTransaction, including the first 6 digits of the card number and the last 4 digits of the card number. Our goal is to limit our PCI exposure as much as we can and our InfoSec team is saying that if "first6" comes across the wire (even if we do not store it) that there are PCI impacts for us.
"cardType": "VISA",
"entryType": "PINPAD_MANUAL_ENTRY",
"first6": "411111",
"last4": "1111",
My question is: Is there another way to get the card type, or is there a way to filter the output to exclude specific return values?
Thanks!