Visa

Visa is a supported Vantiv credit card payment method that is used for transactions during the sales order workflow. Visa is included by default in the payment pick list. It isn't set as a CustomCharge.

Before you can use payment processors and their supported payment methods for transactions during the sales order workflow, configuration is required in Order Management.

The order XML is imported into Order Management with the payment tag when the payment is Authorized or Captured outside of Order Management. When tokenization is enabled, the bfProcessorToken custom attribute is included in the XML. The TokenizationEnabled setting is configured in the Vantiv External Payment Processors.

Example 1: Payment Tag in XML

This example shows the payment tag in XML when tokenization is set to 'No' in Order Management, the <card-type> = VISA and the <transaction-type> = AUTH.

Note: When tokenization is set to 'No' for a Captured payment transaction, the XML is the same except that the <transaction-type> = CAPTURE.
<payments>
  <payment>
    <credit-card>
      <card-type>VISA</card-type>
      <card-number>XXXX-XXXX-XXXX-0007</card-number>
      <expiration-month>02</expiration-month>
      <expiration-year>2018</expiration-year>
    </credit-card>
    <amount>143</amount>
    <processor-id>Vantiv</processor-id>
    <transaction-id>82917530810861167</transaction-id>
    <transaction-type>AUTH</transaction-type>
  </payment>
</payments>

Example 2: Custom Attributes Added to the Payment Tag in XML

This example shows the payment tag in XML when tokenization is set to 'Yes' in Order Management, the <card-type> = VISA, the <transaction-type> = AUTH, and the <custom-attribute attribute-id> ="bfProcessorToken">XXXXX. The XXXXX refers to the token's string of numbers.

Note: When tokenization is set to 'Yes' for a Captured payment transaction, the XML is the same except that the <transaction-type> = CAPTURE.
<payments>
  <payment>
    <credit-card>
      <card-type>VISA</card-type>
      <card-number>XXXX-XXXX-XXXX-0007</card-number>
      <expiration-month>02</expiration-month>
      <expiration-year>2018</expiration-year>
    </credit-card>
    <amount>143</amount>
    <processor-id>Vantiv</processor-id>
    <transaction-id>82917530810861167</transaction-id>
    <transaction-type>AUTH</transaction-type>
    <custom-attributes>
       <custom-attribute attribute-id="bfProcessorToken">1111000218220007</custom-attribute>
    </custom-attributes>
  </payment>
</payments>
X Privacy Update: We use cookies to make interactions with our websites and services easy and meaningful, to better understand how they are used. By continuing to use this site you are giving us your consent to do this. Privacy Policy.