Stripe:仅在请求传输时获得“您不能请求除`transfers` 以外的任何功能” 完整细节:1.我创建了一个连接帐户2.获得入门链接:3.转到入门链接

问题描述

我正在通过 Stripe 设置一个测试连接帐户,但由于某种原因,在入职过程中我得到:

您不能为 transfers 服务协议下的帐户请求除 recipient 之外的任何功能。

即使我仅将功能设置为 transfers.requested: true

完整细节:

1.我创建了一个连接帐户

请求:

POST https://api.stripe.com/v1/accounts
x-www-form-urlencoded 正文:
tos_acceptance[service_agreement]:收件人
能力[转移][请求]:真实
国家:AT
类型:快递

回复:

{
    "id": "acct_1IEKs6Q5kVIyiDKZ","object": "account","business_profile": {
        "mcc": null,"name": null,"product_description": null,"support_address": null,"support_email": null,"support_phone": null,"support_url": null,"url": null
    },"business_type": null,"capabilities": {
        "transfers": "inactive"
    },"charges_enabled": false,"country": "AT","created": 1611780255,"default_currency": "eur","details_submitted": false,"email": null,"external_accounts": {
        "object": "list","data": [],"has_more": false,"total_count": 0,"url": "/v1/accounts/acct_1IEKs6Q5kVIyiDKZ/external_accounts"
    },"login_links": {
        "object": "list","url": "/v1/accounts/acct_1IEKs6Q5kVIyiDKZ/login_links","data": []
    },"metadata": {},"payouts_enabled": false,"requirements": {
        "current_deadline": null,"currently_due": [
            "business_type","external_account","tos_acceptance.date","tos_acceptance.ip"
        ],"disabled_reason": "requirements.past_due","errors": [],"eventually_due": [
            "business_type","past_due": [
            "business_type","pending_verification": []
    },"settings": {
        "bacs_debit_payments": {},"branding": {
            "icon": null,"logo": null,"primary_color": null,"secondary_color": null
        },"card_payments": {
            "decline_on": {
                "avs_failure": false,"cvc_failure": false
            },"statement_descriptor_prefix": null
        },"dashboard": {
            "display_name": "Some business LLC","timezone": "Etc/UTC"
        },"payments": {
            "statement_descriptor": null,"statement_descriptor_kana": null,"statement_descriptor_kanji": null
        },"payouts": {
            "debit_negative_balances": false,"schedule": {
                "delay_days": 7,"interval": "daily"
            },"statement_descriptor": null
        },"sepa_debit_payments": {}
    },"tos_acceptance": {
        "date": null,"ip": null,"service_agreement": "recipient","user_agent": null
    },"type": "express"
}

2.获得入门链接:

请求:

POST https://api.stripe.com/v1/accounts
x-www-form-urlencoded 正文:
帐号:acct_1IEKs6Q5kVIyiDKZ
刷新网址:https://example.com/reauth
返回网址:https://example.com/return
类型:account_onboarding

回复:

{
    "object": "account_link","created": 1611780861,"expires_at": 1611781161,"url": "https://connect.stripe.com/express/onboarding/<some string>"
}

3.转到入门链接

告诉我们您的业务部分按下一步后出现错误。

您不能为 transfers 服务协议下的帐户请求除 recipient 之外的任何功能。有关收件人服务协议的详细信息,请参阅 https://stripe.com/docs/connect/service-agreement-types#recipient

enter image description here

为什么 Stripe 认为我请求的是传输以外的功能?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)