I'm working in a project which have an integration to BigCommerce, but I have a problem trying to process the payment method, I need to know what is the card type used in a payment method if this accept using card. This is the Xml of the response when I made the request for payment method list. GET /api/v2/payments/methods
<?xml version="1.0" encoding="UTF-8"?>
<payment_methods>
<payment_method>
<code>braintree</code>
<name>PayPal powered by Braintree</name>
<test_mode>false</test_mode>
</payment_method>
<payment_method>
<code>braintreepaypal</code>
<name>PayPal powered by Braintree</name>
<test_mode>false</test_mode>
</payment_method>
<payment_method>
<code>testgateway</code>
<name>Test Payment Gateway</name>
<test_mode>true</test_mode>
</payment_method>
<payment_method>
<code>cod</code>
<name>Cash on Delivery</name>
<test_mode>false</test_mode>
</payment_method>
<payment_method>
<code>cheque</code>
<name>Check</name>
<test_mode>false</test_mode>
</payment_method>
<payment_method>
<code>moneyorder</code>
<name>Money Order</name>
<test_mode>false</test_mode>
</payment_method>
<payment_method>
<code>instore</code>
<name>Pay in Store</name>
<test_mode>false</test_mode>
</payment_method>
<payment_method>
<code>bankdeposit</code>
<name>Bank Deposit</name>
<test_mode>false</test_mode>
</payment_method>
</payment_methods>
If I choose Test Payment Gateway as payment method, You must insert a card. I need to know the type of the card(VI,MC, AMEX ....)