如何在蓝快照中保存购物者的信用卡?



我正在将bluesnap的支付API与我的网站集成。如何将卡信息存储在 bluesnap 中,以便我不必在自己的数据库中执行此操作?

如果您使用的是付款 API,则可以在购物者级别保存信用卡数据。为此,您需要在 BlueSnap 中创建已保存的购物者,并包含该购物者的卡片数据。您还可以添加购物者的姓名和地址等信息。

例如:

<vaulted-shopper xmlns="http://ws.plimus.com">
   <first-name>FirstName</first-name>
   <last-name>LastName</last-name>
   <payment-sources>
      <credit-card-info>
         <credit-card>
            <card-number>4263982640269299</card-number>
            <security-code>837</security-code>
            <expiration-month>02</expiration-month>
            <expiration-year>2018</expiration-year>
         </credit-card>
         <billing-contact-info>
            <first-name>billingFirstName</first-name>
            <last-name>billingLastName</last-name>
            <country>US</country>
            <state>MA</state>
            <address1>10 Main St</address1>
            <address2>Apt 1</address2>
            <email>email@example.com</email>
            <zip>01752</zip>
         </billing-contact-info>
      </credit-card-info>
   </payment-sources>
</vaulted-shopper>

更多信息和示例如下:http://developers.bluesnap.com/v2.0/docs/create-vaulted-shopper

相关内容

  • 没有找到相关文章

最新更新