簡體   English   中英

條帶管理帳戶驗證不起作用

[英]Stripe managed account verification not working

我正在使用Stripe Connect將資金轉移到第三方銀行帳戶。

我已經在Stripe Connect中創建了托管帳戶,並將銀行帳戶詳細信息鏈接到該帳戶。

使用SSN編號驗證帳戶時,出現以下錯誤。

致命錯誤:消息為“收到的未知參數:personal_id_number_provided,ssn_last_4_provided”的未捕獲異常“ Stripe \\ Error \\ InvalidRequest”

碼:

$account = \Stripe\Account::retrieve("acct_xxxxx");
$account->legal_entity->business_name = "Gowri Sankar";
$account->legal_entity->dob = array('day'=>05,'month'=>06,'year'=>1990);
$account->legal_entity->first_name = 'Gowri';
$account->legal_entity->last_name = 'Sankar';
$account->legal_entity->personal_address = array('city'=>'San Clemente','country'=>'US','line1'=>'100', 'line2'=>'Avenida Presidio', 'postal_code'=>'92672','state'=>'CA');

//These two lines gives error
$account->legal_entity->personal_id_number_provided = '8547';
$account->legal_entity->ssn_last_4_provided = true;


$account->legal_entity->type = 'individual';
$account->tos_acceptance->date = time();
$account->tos_acceptance->ip = $_SERVER['REMOTE_ADDR'];
$account->save();

我正在使用Stripe PHP API。
有任何建議請。

可以肯定的是,您現在已經弄清楚了,但是那兩個參數無效。 正確的參數應該是ssn_last_4 嘗試運行:

$account->legal_entity->ssn_last_4 = '8547';

也許(主要針對國際客戶):

$account->legal_entity->personal_id_number = '8547';

根據文檔

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM