如何使用laravel收银机从条带上针对特定用户成功进行付款或交易。我在Google上搜索了它,但仍然找不到合适的解决方案。
答案 0 :(得分:0)
虽然收银员中可能有一种本地方法来执行此操作,但我不知道针对API进行此操作的方法是列出PaymentIntent(或费用)并由客户进行过滤,例如:
$payment_intents = $stripe->paymentIntents->all(['customer' => 'cus_xxx']);
[1] https://stripe.com/docs/api/payment_intents/list?lang=php#list_payment_intents-customer
[2] https://stripe.com/docs/api/charges/list?lang=php#list_charges-customer