Perl Stripe: Create a Bank Account

Back to Index

Creates a new bank account object.

Documentation: https://stripe.com/docs/api/curl#customer_create_bank_account

CURL Command

curl https://api.stripe.com/v1/customers/cus_CBbg3iRMzWBjoe/sources \
   -u STRIPE_SECRET_KEY: \
   -d source=btok_1BnETKGswQrCoh0X43GQEzjM \
   -X POST

Perl Example

use chilkat();

$rest = chilkat::CkRest->new();

#  URL: https://api.stripe.com/v1/customers/cus_CBbg3iRMzWBjoe/sources
$bTls = 1;
$port = 443;
$bAutoReconnect = 1;
$success = $rest->Connect("api.stripe.com",$port,$bTls,$bAutoReconnect);
if ($success != 1) {
    print "ConnectFailReason: " . $rest->get_ConnectFailReason() . "\r\n";
    print $rest->lastErrorText() . "\r\n";
    exit;
}

$rest->SetAuthBasic("STRIPE_SECRET_KEY","");

$rest->AddQueryParam("source","btok_1BnETKGswQrCoh0X43GQEzjM");

$strResponseBody = $rest->fullRequestFormUrlEncoded("POST","/v1/customers/cus_CBbg3iRMzWBjoe/sources");
if ($rest->get_LastMethodSuccess() != 1) {
    print $rest->lastErrorText() . "\r\n";
    exit;
}

$jsonResponse = chilkat::CkJsonObject->new();
$jsonResponse->Load($strResponseBody);

$id = $jsonResponse->stringOf("id");
$object = $jsonResponse->stringOf("object");
$account = $jsonResponse->stringOf("account");
$account_holder_name = $jsonResponse->stringOf("account_holder_name");
$account_holder_type = $jsonResponse->stringOf("account_holder_type");
$bank_name = $jsonResponse->stringOf("bank_name");
$country = $jsonResponse->stringOf("country");
$currency = $jsonResponse->stringOf("currency");
$default_for_currency = $jsonResponse->BoolOf("default_for_currency");
$fingerprint = $jsonResponse->stringOf("fingerprint");
$last4 = $jsonResponse->stringOf("last4");
$routing_number = $jsonResponse->stringOf("routing_number");
$status = $jsonResponse->stringOf("status");
$customer = $jsonResponse->stringOf("customer");

Sample JSON Response Body

{
  "id": "ba_1BnETKGswQrCoh0XzgjB3t99",
  "object": "bank_account",
  "account": "acct_18qpKxGswQrCoh0X",
  "account_holder_name": "Jane Austen",
  "account_holder_type": "individual",
  "bank_name": "STRIPE TEST BANK",
  "country": "US",
  "currency": "usd",
  "default_for_currency": false,
  "fingerprint": "L2j4aSuWk1MZMDZ5",
  "last4": "6789",
  "metadata": {},
  "routing_number": "110000000",
  "status": "new",
  "customer": "cus_CBbg3iRMzWBjoe"
}