C# UWP/WinRT Stripe: List all Bank Accounts

Back to Index

List bank accounts belonging to a customer.

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

CURL Command

curl "https://api.stripe.com/v1/customers/cus_CBbg3iRMzWBjoe/sources?object=bank_account&limit=3" \
   -u STRIPE_SECRET_KEY: \
   -G

C# UWP/WinRT Example

Chilkat.Rest rest = new Chilkat.Rest();
bool success;

//  URL: https://api.stripe.com/v1/customers/cus_CBbg3iRMzWBjoe/sources?object=bank_account&limit=3
bool bTls = true;
int port = 443;
bool bAutoReconnect = true;
success = await rest.ConnectAsync("api.stripe.com",port,bTls,bAutoReconnect);
if (success != true) {
    Debug.WriteLine("ConnectFailReason: " + Convert.ToString(rest.ConnectFailReason));
    Debug.WriteLine(rest.LastErrorText);
    return;
}

rest.SetAuthBasic("STRIPE_SECRET_KEY","");

Chilkat.StringBuilder sbResponseBody = new Chilkat.StringBuilder();
success = await rest.FullRequestNoBodySbAsync("GET","/v1/customers/cus_CBbg3iRMzWBjoe/sources?object=bank_account&limit=3",sbResponseBody);
if (success != true) {
    Debug.WriteLine(rest.LastErrorText);
    return;
}

Chilkat.JsonObject jsonResponse = new Chilkat.JsonObject();
jsonResponse.LoadSb(sbResponseBody);

string object;
string url;
bool has_more;
int i;
int count_i;
string id;
string account;
string account_holder_name;
string account_holder_type;
string bank_name;
string country;
string currency;
bool default_for_currency;
string fingerprint;
string last4;
string routing_number;
string status;
string customer;

object = jsonResponse.StringOf("object");
url = jsonResponse.StringOf("url");
has_more = jsonResponse.BoolOf("has_more");
i = 0;
count_i = jsonResponse.SizeOfArray("data");
while (i < count_i) {
    jsonResponse.I = i;
    id = jsonResponse.StringOf("data[i].id");
    object = jsonResponse.StringOf("data[i].object");
    account = jsonResponse.StringOf("data[i].account");
    account_holder_name = jsonResponse.StringOf("data[i].account_holder_name");
    account_holder_type = jsonResponse.StringOf("data[i].account_holder_type");
    bank_name = jsonResponse.StringOf("data[i].bank_name");
    country = jsonResponse.StringOf("data[i].country");
    currency = jsonResponse.StringOf("data[i].currency");
    default_for_currency = jsonResponse.BoolOf("data[i].default_for_currency");
    fingerprint = jsonResponse.StringOf("data[i].fingerprint");
    last4 = jsonResponse.StringOf("data[i].last4");
    routing_number = jsonResponse.StringOf("data[i].routing_number");
    status = jsonResponse.StringOf("data[i].status");
    customer = jsonResponse.StringOf("data[i].customer");
    i = i + 1;
}

Sample JSON Response Body

{
  "object": "list",
  "url": "/v1/customers/cus_CBbg3iRMzWBjoe/sources",
  "has_more": false,
  "data": [
    {
      "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"
    }
  ]
}