Stripe 目的地收费付款详细信息中的输出错误

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

我使用 Stripe Connect 目标费用向客户收费,但 Stripe 仪表板付款详细信息中的输出与文档中提供的示例不同。

下图在文档

中提供

enter image description here

示例显示 10 美元的费用。然后从 10 美元的费用中扣除 1.23 美元的申请费,总计 8.77 美元将转入关联帐户或商户。

1.23 美元的申请费将从 0.59 美元的条带费中扣除(费用的 2.9+%30 美分),总计 0.64 美元。

我使用下面的示例curl代码来运行该过程,但条带仪表板中的输出与提供的示例流程不同。

curl https://api.stripe.com/v1/checkout/sessions \
  -u "sk_test_51LPByuBJiyP9Bsbcf887kxitVgP93...................:" \
  -d "line_items[0][price_data][currency]"=usd \
  -d "line_items[0][price_data][product_data][name]"=T-shirt \
  -d "line_items[0][price_data][unit_amount]"=1000 \
  -d "line_items[0][quantity]"=1 \
  -d "payment_intent_data[application_fee_amount]"=123 \
  -d "payment_intent_data[transfer_data][destination]"="acct_1PDLxkB4xpDA109n" \
  -d mode=payment \
  --data-urlencode success_url="https://example.com/success?session_id={CHECKOUT_SESSION_ID}"

下面是条带仪表板中的输出。

enter image description here

如您所见,net与条带文档中提供的示例不同。是平台账户的网还是关联账户的网?如果是平台帐户,则应为 0.64 美元,而不是 9.41 美元;如果是关联帐户,则应为 8.77 美元。

条纹仪表板中是否有我需要配置的内容,或者可能我只是误解了付款详细信息?

stripe-payments
1个回答
0
投票
  • 您向客户收取了 10.00 美元

+10

  • 条纹费用为 0.59 美元

-0.59 = 9.41 > 这是 Stripe 仪表板上的净金额

  • 全额 10.00 美元将转入您关联的帐户

-10 = -0.59

  • 将从您关联的帐户中收回 1.23 美元的申请费

+1.23 = 0.64

您作为平台收取此费用的直接利润为 0.64 美元

© www.soinside.com 2019 - 2024. All rights reserved.