簡體   English   中英

如何添加銀行帳戶並將其附加到Stripe上的“關聯帳戶”?

[英]How to add a bank account and attach it to a “connected account” on Stripe?

Stripe API解釋了如何創建和更新帳戶: https : //stripe.com/docs/api#external_accounts

Stripe Api還說明了如何創建銀行帳戶: https : //stripe.com/docs/api#account_create_bank_account

我正在嘗試為連接的帳戶創建一個銀行帳戶,但是不幸的是,我一直被以下錯誤消息阻止:

缺少必需的參數:external_account。

這是我繼續創建關聯帳戶的方法:

public function test_stripe_create_connected_account(Request $request)
{

    \Stripe\Stripe::setApiKey("sk_test_...");

    $acct = \Stripe\Account::create(array(
        "country" => "CH",
        "type" => "custom",
        "email" => "test@test.ch"
    ));

}

然后,通過以這種方式更新帳戶來完成該帳戶:

public function test_stripe_update_account(Request $request)
{

    try {

        \Stripe\Stripe::setApiKey("sk_test_...");

        $account = \Stripe\Account::retrieve("acct_1BTRCOB5XLEUUY47");
        $account->support_email = "victor@krown.ch";
        $account->support_phone = "0041764604220";

        $account->legal_entity->type = "company";
        $account->legal_entity->business_name = "Barbosa Duvanel SARL";
        $account->legal_entity->additional_owners = NULL;

        //NAME
        $account->legal_entity->first_name = "Victor";
        $account->legal_entity->last_name = "Duvanel";

        //BIRTH DATE
        $account->legal_entity->dob->day = 25;
        $account->legal_entity->dob->month = 3;
        $account->legal_entity->dob->year = 1988;

        //ADDRESS
        $account->legal_entity->address->city = "Genève";
        $account->legal_entity->address->country = "CH";
        $account->legal_entity->address->line1 = "Av de la Roseraie 76A";
        $account->legal_entity->address->line2 = "Genève";
        $account->legal_entity->address->postal_code = "1207";
        $account->legal_entity->address->state = "Genève";

        //PERSONAL ADDRESS
        $account->legal_entity->personal_address->city = "Genève";
        $account->legal_entity->personal_address->country = "CH";
        $account->legal_entity->personal_address->line1 = "Av de la Roseraie 76A";
        $account->legal_entity->personal_address->line2 = "Genève";
        $account->legal_entity->personal_address->postal_code = "1207";
        $account->legal_entity->personal_address->state = "Genève";

        //GENERAL CONDITIONS ACCEPTATION
        $account->tos_acceptance->date = time();
        $account->tos_acceptance->ip = $_SERVER['REMOTE_ADDR'];

        $account->save();

        $message = 'OK';
        $status = true;

    } catch (\Exception $error) {
        $message = $error->getMessage();
        $status = false;
    }

    $results = (object)array(
        'message' => $message,
        'status' => $status,
    );

    $response = response()->json($results, 200);
    return $response;

}

最后,我嘗試像這樣將新的銀行帳戶附加到我的用戶:

public function test_stripe_create_bank_account(Request $request)
{

    try {

        \Stripe\Stripe::setApiKey("sk_test_...");

        $account = \Stripe\Account::retrieve("acct_1BSoOaGS1D3TfSN5");

        $account->external_accounts->create(
            array(
                "object" => "bank_account",
                "account_number" => "CH820024024090647501F",
                "country" => "CH",
                "currency" => "CHF",
            )
        );

        $message = 'OK';
        $status = true;

    } catch (\Exception $error) {
        $message = $error->getMessage();
        $status = false;
    }

    $results = (object)array(
        'message' => $message,
        'status' => $status,
    );

    $response = response()->json($results, 200);
    return $response;

}

我究竟做錯了什么?

任何幫助,將不勝感激!

您需要更改外部帳戶創建請求,以將數組包裝在external_account參數名稱下,如下所示:

$account->external_accounts->create(array(
    "external_account" => array(
        "object" => "bank_account",
        "account_number" => "CH820024024090647501F",
        "country" => "CH",
        "currency" => "CHF",
    )
));

我在現有項目中使用以下代碼。 您可以不用擔心而使用此代碼

public function Stripe(){
    Stripe\Stripe::setApiKey(env('STRIPE_SECRET'));
    try {
        // first create bank token
        $bankToken = \Stripe\Token::create([
            'bank_account' => [
                'country' => 'GB',
                'currency' => 'GBP',
                'account_holder_name' => 'Soura Sankar',
                'account_holder_type' => 'individual',
                'routing_number' => '108800',
                'account_number' => '00012345'
            ]
        ]); 
        // second create stripe account
        $stripeAccount = \Stripe\Account::create([
            "type" => "custom",
            "country" => "GB",
            "email" => "<Mail-Id>",   
            "business_type" => "individual",
            "individual" => [
                'address' => [
                    'city' => 'London',
                    'line1' => '16a, Little London, Milton Keynes, MK19 6HT ',
                    'postal_code' => 'MK19 6HT',            
                ],
                'dob'=>[
                    "day" => '25',
                    "month" => '02',
                    "year" => '1994'
                ],
                "email" => '<Mail-Id>',
                "first_name" => 'Soura',
                "last_name" => 'Ghosh',
                "gender" => 'male',
                "phone"=> "<Phone-No>"
            ]     
        ]);
        // third link the bank account with the stripe account
        $bankAccount = \Stripe\Account::createExternalAccount(
          $stripeAccount->id,['external_account' => $bankToken->id]
        );
        // Fourth stripe account update for tos acceptance
        \Stripe\Account::update(
            $stripeAccount->id,[
            'tos_acceptance' => [
                  'date' => time(),
                  'ip' => $_SERVER['REMOTE_ADDR'] // Assumes you're not using a proxy
                ],
            ]
        );
        $response = ["bankToken"=>$bankToken->id,"stripeAccount"=>$stripeAccount->id,"bankAccount"=>$bankAccount->id];
        dd($response);
    } catch (\Exception $e) {
       dd($e->jsonBody['error']['message']);
    }

暫無
暫無

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

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