使用Stripe API,如何从连接的账户中检索支付意图?

问题描述 投票:0回答:1

我正在使用 stripe 构建一个使用连接帐户的应用程序。我需要检索用于与给定连接帐户关联的购买的 paymentIntent。我可以使用此处第一个示例列出的语法创建 paymentIntent:https://docs.stripe.com/connect/authentication,但是当我尝试使用相同的语法来检索付款意图时,我得到了出现以下错误:

Received unknown parameter: stripe_account

这是我用来检索付款意图的代码:

$payment_intent = $stripe->paymentIntents->retrieve(
        $payment_intent_id,
        ['stripe_account' => $connected_account_id]
    );

是否可以从连接的帐户检索 paymentIntent,如果可以,如果不使用与创建 patmentIntent 相同的语法,我该怎么做?

我正在使用 PHP,并且更喜欢在服务器端执行此操作,但如果需要,我愿意在客户端上使用 JS。谢谢你。

php stripe-payments
1个回答
0
投票

您需要一个用于正文的数组和一个用于标题的数组 (

stripe_account
)

$payment_intent = $stripe->paymentIntents->retrieve(
    $payment_intent_id,
    [], 
    ['stripe_account' => $connected_account_id]
);
© www.soinside.com 2019 - 2024. All rights reserved.