如何连接到条带管理帐户并付款?
How to connect to managed account in stripe and make a payment?
首先,我很抱歉我的英语不好。
我想在 Stripe 中创建一个从账户 A 到账户 B 的费用。账户 A 是一个托管账户。账户B可以是多个账户中的任何一个。但是当我尝试使用目标参数创建费用时,API 返回错误。说:
"error": {
"type": "invalid_request_error",
"message": "The destination param must be a connected account.",
"param": "destination"
}
我如何连接目标账户(账户 B)来获取这个??。我为此使用 php api 条带。接下来这是我使用的示例代码。提前致谢:
\Stripe\Stripe::setApiKey('sk_test_ACCOUNT_A_KEY');
// Charge the order:
$charge = \Stripe\Charge::create(array(
// 'source' => $token,
'customer' => 'cus_ID_CUSTOMER_TO_GET_PAYMENT',
"amount" => 100000,
"currency" => "usd",
"description" => "from account A to account B",
'destination' => 'acct_ID_DESTINATION_ACCOUNT'
)
);
echo "<pre>";
print_r($charge);
echo "</pre>";
如果您浏览过 stripe 文档,您会清楚地看到 Stripe connect 中存在三种类型的费用。
- 直接费用
- 目的地费用
- 单独收费
在您的情况下,您将不得不使用目的地费用。你可以使用
$charge = \Stripe\Charge::create(array(
"amount" => 1000,
"currency" => "usd",
"source" => "cus_ID_CUSTOMER_TO_GET_PAYMENT",
"destination" => array(
"account" => "{CONNECTED_STRIPE_ACCOUNT_ID}",
),
));
代表您的关联帐户向客户收费。
首先,我很抱歉我的英语不好。
我想在 Stripe 中创建一个从账户 A 到账户 B 的费用。账户 A 是一个托管账户。账户B可以是多个账户中的任何一个。但是当我尝试使用目标参数创建费用时,API 返回错误。说:
"error": {
"type": "invalid_request_error",
"message": "The destination param must be a connected account.",
"param": "destination"
}
我如何连接目标账户(账户 B)来获取这个??。我为此使用 php api 条带。接下来这是我使用的示例代码。提前致谢:
\Stripe\Stripe::setApiKey('sk_test_ACCOUNT_A_KEY');
// Charge the order:
$charge = \Stripe\Charge::create(array(
// 'source' => $token,
'customer' => 'cus_ID_CUSTOMER_TO_GET_PAYMENT',
"amount" => 100000,
"currency" => "usd",
"description" => "from account A to account B",
'destination' => 'acct_ID_DESTINATION_ACCOUNT'
)
);
echo "<pre>";
print_r($charge);
echo "</pre>";
如果您浏览过 stripe 文档,您会清楚地看到 Stripe connect 中存在三种类型的费用。
- 直接费用
- 目的地费用
- 单独收费
在您的情况下,您将不得不使用目的地费用。你可以使用
$charge = \Stripe\Charge::create(array(
"amount" => 1000,
"currency" => "usd",
"source" => "cus_ID_CUSTOMER_TO_GET_PAYMENT",
"destination" => array(
"account" => "{CONNECTED_STRIPE_ACCOUNT_ID}",
),
));
代表您的关联帐户向客户收费。