为保存的信用卡充电 - 连接V2

时间:2018-01-31 13:14:42

标签: square square-connect

如何通过保存的信用卡向客户收取费用?

卡片对象返回ID,如何将该ID转换为信用卡nonce?

1 个答案:

答案 0 :(得分:1)

你不必。

Charge端点采用card_noncecustomer_idcustomer_card_id的组合。在这种情况下,你的json体看起来像这样:

{
  "idempotency_key": "xxxx",
  "amount_money": {
    "amount": 100,
    "currency": "USD"
  },
  "customer_card_id": "{{customer_card_id}}";
  "reference_id": "some optional reference id",
  "note": "some optional note",
  "customer_id":"{{customer_id}}",
  "delay_capture": false
}

您可以在此页面上使用ruby示例了解有关它的更多信息:https://docs.connect.squareup.com/articles/processing-recurring-payments-ruby