Braintree 子商户帐户创建
Braintree sub-merchant account creation
我无法使用美国境外的公司地址在 Braintree 中创建子商户帐户。我正在使用 Braintree 沙箱帐户和 PHP SDK。我已成功创建主商家帐户。当我尝试使用澳大利亚公司地址创建子商户帐户时,Braintree 响应以下错误:
Individual region is invalid.
但是,如果我使用类似于 Braintree 文档中提到的美国地址,我可以创建子商户帐户。
文档 url:https://developers.braintreepayments.com/guides/braintree-marketplace/onboarding/php
我的地址参数:
'business' => [
'legalName' => 'Jane\'s Ladders',
'dbaName' => 'Jane\'s Ladders',
'taxId' => '98-7654321',
'address' => [
'streetAddress' => '6 10 Smith Street',
'locality' => 'NEUTRAL BAY',
'region' => 'NSW',
'postalCode' => '02055'
]
]
我不能使用美国以外的地址创建子商户帐户吗?
完全披露:我在 Braintree 工作。如果您有任何其他问题,请随时联系 support.
您不能在美国境外使用子商户。来自 Braintree developer documentation:
Both the master merchant and sub-merchants must be domiciled in the US and receive funding in USD
我无法使用美国境外的公司地址在 Braintree 中创建子商户帐户。我正在使用 Braintree 沙箱帐户和 PHP SDK。我已成功创建主商家帐户。当我尝试使用澳大利亚公司地址创建子商户帐户时,Braintree 响应以下错误:
Individual region is invalid.
但是,如果我使用类似于 Braintree 文档中提到的美国地址,我可以创建子商户帐户。 文档 url:https://developers.braintreepayments.com/guides/braintree-marketplace/onboarding/php
我的地址参数:
'business' => [
'legalName' => 'Jane\'s Ladders',
'dbaName' => 'Jane\'s Ladders',
'taxId' => '98-7654321',
'address' => [
'streetAddress' => '6 10 Smith Street',
'locality' => 'NEUTRAL BAY',
'region' => 'NSW',
'postalCode' => '02055'
]
]
我不能使用美国以外的地址创建子商户帐户吗?
完全披露:我在 Braintree 工作。如果您有任何其他问题,请随时联系 support.
您不能在美国境外使用子商户。来自 Braintree developer documentation:
Both the master merchant and sub-merchants must be domiciled in the US and receive funding in USD