Delphi DLL Stripe: List all Cards

Back to Index

List the cards belonging to a customer or recipient.

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

CURL Command

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

Delphi DLL Example

var
rest: HCkRest;
success: Boolean;
bTls: Boolean;
port: Integer;
bAutoReconnect: Boolean;
sbResponseBody: HCkStringBuilder;
jsonResponse: HCkJsonObject;
object: PWideChar;
url: PWideChar;
has_more: Boolean;
i: Integer;
count_i: Integer;
id: PWideChar;
address_city: Boolean;
address_country: Boolean;
address_line1: Boolean;
address_line1_check: Boolean;
address_line2: Boolean;
address_state: Boolean;
address_zip: Boolean;
address_zip_check: Boolean;
brand: PWideChar;
country: PWideChar;
customer: PWideChar;
cvc_check: Boolean;
dynamic_last4: Boolean;
exp_month: Integer;
exp_year: Integer;
fingerprint: PWideChar;
funding: PWideChar;
last4: PWideChar;
name: Boolean;
tokenization_method: Boolean;

begin
rest := CkRest_Create();

//  URL: https://api.stripe.com/v1/customers/cus_CBbg3iRMzWBjoe/sources?object=card&limit=3
bTls := True;
port := 443;
bAutoReconnect := True;
success := CkRest_Connect(rest,'api.stripe.com',port,bTls,bAutoReconnect);
if (success <> True) then
  begin
    Memo1.Lines.Add('ConnectFailReason: ' + IntToStr(CkRest_getConnectFailReason(rest)));
    Memo1.Lines.Add(CkRest__lastErrorText(rest));
    Exit;
  end;

CkRest_SetAuthBasic(rest,'STRIPE_SECRET_KEY','');

sbResponseBody := CkStringBuilder_Create();
success := CkRest_FullRequestNoBodySb(rest,'GET','/v1/customers/cus_CBbg3iRMzWBjoe/sources?object=card&limit=3',sbResponseBody);
if (success <> True) then
  begin
    Memo1.Lines.Add(CkRest__lastErrorText(rest));
    Exit;
  end;

jsonResponse := CkJsonObject_Create();
CkJsonObject_LoadSb(jsonResponse,sbResponseBody);

object := CkJsonObject__stringOf(jsonResponse,'object');
url := CkJsonObject__stringOf(jsonResponse,'url');
has_more := CkJsonObject_BoolOf(jsonResponse,'has_more');
i := 0;
count_i := CkJsonObject_SizeOfArray(jsonResponse,'data');
while i < count_i do
  begin
CkJsonObject_putI(jsonResponse,i);
    id := CkJsonObject__stringOf(jsonResponse,'data[i].id');
    object := CkJsonObject__stringOf(jsonResponse,'data[i].object');
    address_city := CkJsonObject_IsNullOf(jsonResponse,'data[i].address_city');
    address_country := CkJsonObject_IsNullOf(jsonResponse,'data[i].address_country');
    address_line1 := CkJsonObject_IsNullOf(jsonResponse,'data[i].address_line1');
    address_line1_check := CkJsonObject_IsNullOf(jsonResponse,'data[i].address_line1_check');
    address_line2 := CkJsonObject_IsNullOf(jsonResponse,'data[i].address_line2');
    address_state := CkJsonObject_IsNullOf(jsonResponse,'data[i].address_state');
    address_zip := CkJsonObject_IsNullOf(jsonResponse,'data[i].address_zip');
    address_zip_check := CkJsonObject_IsNullOf(jsonResponse,'data[i].address_zip_check');
    brand := CkJsonObject__stringOf(jsonResponse,'data[i].brand');
    country := CkJsonObject__stringOf(jsonResponse,'data[i].country');
    customer := CkJsonObject__stringOf(jsonResponse,'data[i].customer');
    cvc_check := CkJsonObject_IsNullOf(jsonResponse,'data[i].cvc_check');
    dynamic_last4 := CkJsonObject_IsNullOf(jsonResponse,'data[i].dynamic_last4');
    exp_month := CkJsonObject_IntOf(jsonResponse,'data[i].exp_month');
    exp_year := CkJsonObject_IntOf(jsonResponse,'data[i].exp_year');
    fingerprint := CkJsonObject__stringOf(jsonResponse,'data[i].fingerprint');
    funding := CkJsonObject__stringOf(jsonResponse,'data[i].funding');
    last4 := CkJsonObject__stringOf(jsonResponse,'data[i].last4');
    name := CkJsonObject_IsNullOf(jsonResponse,'data[i].name');
    tokenization_method := CkJsonObject_IsNullOf(jsonResponse,'data[i].tokenization_method');
    i := i + 1;
  end;

CkRest_Dispose(rest);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jsonResponse);

Sample JSON Response Body

{
  "object": "list",
  "url": "/v1/customers/cus_CBbg3iRMzWBjoe/sources",
  "has_more": false,
  "data": [
    {
      "id": "card_1BnETKGswQrCoh0Xhu1A6BfL",
      "object": "card",
      "address_city": null,
      "address_country": null,
      "address_line1": null,
      "address_line1_check": null,
      "address_line2": null,
      "address_state": null,
      "address_zip": null,
      "address_zip_check": null,
      "brand": "Visa",
      "country": "US",
      "customer": "cus_CBbg3iRMzWBjoe",
      "cvc_check": null,
      "dynamic_last4": null,
      "exp_month": 8,
      "exp_year": 2019,
      "fingerprint": "F9mANtIt1TaukpRJ",
      "funding": "credit",
      "last4": "4242",
      "metadata": {},
      "name": null,
      "tokenization_method": null
    }
  ]
}