如何通过保存的信用卡向客户收取费用?
卡片对象返回ID,如何将该ID转换为信用卡nonce?
答案 0 :(得分:1)
你不必。
Charge端点采用card_nonce
或customer_id
和customer_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