1 Login to your stripe account and navigate to https://dashboard.stripe.com/account/applications/settings and follow below steps:
2. Now have to create Deferred (standard) account using below code snippet (API call). Later account holder will login to their account and complete their verification process:
Successful output would be like below:
Use "keys/secret" (actually it is "Secret key" for API), you can use this Key to process all your transactions.
And list of your connected account is below:
2. Now have to create Deferred (standard) account using below code snippet (API call). Later account holder will login to their account and complete their verification process:
<?php include_once "curl.php"; $api_key = "sk_test_eXF..........jWrcHK95rwj"; $url = "https://api.stripe.com/v1/accounts"; $params = array( "type" => "standard", "country" => "AU", "email" => "pritomkucse+stripe1@gmail.com" ); $headers[] = "Authorization: Bearer $api_key"; $headers[] = "Content-Type: application/x-www-form-urlencoded"; $result = CurlExecutor::execute($url, "POST", null, $params, $headers); $result["response"] = json_decode($result["response"]); CurlExecutor::prettyPrint($result);
Successful output would be like below:
Array ( [code] => 200 [response] => stdClass Object ( [id] => acct_1B3......1R7ddx6 [object] => account [business_logo] => [business_name] => [business_url] => [charges_enabled] => 1 [country] => AU [default_currency] => aud [details_submitted] => [display_name] => [email] => pritomkucse+stripe1@gmail.com [keys] => stdClass Object ( [secret] => sk_test_wel..........5fXfyBsmhI6 [publishable] => pk_test_mlPoU..........zBUbHBFof ) [metadata] => stdClass Object ( ) [payouts_enabled] => [statement_descriptor] => [support_email] => [support_phone] => [timezone] => Etc/UTC [type] => standard ) )
Use "keys/secret" (actually it is "Secret key" for API), you can use this Key to process all your transactions.
And list of your connected account is below: