Unicode C++ Stripe: Update a Card

Back to Index

Updates only some card details, like the billing address or expiration date, you can do so without having to re-enter the full card details.

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

CURL Command

curl https://api.stripe.com/v1/customers/cus_CBbg3iRMzWBjoe/sources/card_1BnETKGswQrCoh0Xhu1A6BfL \
   -u STRIPE_SECRET_KEY: \
   -d name="Liam Thomas" \
   -X POST

Unicode C++ Example

#include <CkRestW.h>
#include <CkJsonObjectW.h>

void ChilkatSample(void)
    {
    CkRestW rest;
    bool success;

    //  URL: https://api.stripe.com/v1/customers/cus_CBbg3iRMzWBjoe/sources/card_1BnETKGswQrCoh0Xhu1A6BfL
    bool bTls = true;
    int port = 443;
    bool bAutoReconnect = true;
    success = rest.Connect(L"api.stripe.com",port,bTls,bAutoReconnect);
    if (success != true) {
        wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

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

    rest.AddQueryParam(L"name",L"Liam Thomas");

    const wchar_t *strResponseBody = rest.fullRequestFormUrlEncoded(L"POST",L"/v1/customers/cus_CBbg3iRMzWBjoe/sources/card_1BnETKGswQrCoh0Xhu1A6BfL");
    if (rest.get_LastMethodSuccess() != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    CkJsonObjectW jsonResponse;
    jsonResponse.Load(strResponseBody);

    const wchar_t *id = 0;
    const wchar_t *object = 0;
    bool address_city;
    bool address_country;
    bool address_line1;
    bool address_line1_check;
    bool address_line2;
    bool address_state;
    bool address_zip;
    bool address_zip_check;
    const wchar_t *brand = 0;
    const wchar_t *country = 0;
    const wchar_t *customer = 0;
    bool cvc_check;
    bool dynamic_last4;
    int exp_month;
    int exp_year;
    const wchar_t *fingerprint = 0;
    const wchar_t *funding = 0;
    const wchar_t *last4 = 0;
    const wchar_t *name = 0;
    bool tokenization_method;

    id = jsonResponse.stringOf(L"id");
    object = jsonResponse.stringOf(L"object");
    address_city = jsonResponse.IsNullOf(L"address_city");
    address_country = jsonResponse.IsNullOf(L"address_country");
    address_line1 = jsonResponse.IsNullOf(L"address_line1");
    address_line1_check = jsonResponse.IsNullOf(L"address_line1_check");
    address_line2 = jsonResponse.IsNullOf(L"address_line2");
    address_state = jsonResponse.IsNullOf(L"address_state");
    address_zip = jsonResponse.IsNullOf(L"address_zip");
    address_zip_check = jsonResponse.IsNullOf(L"address_zip_check");
    brand = jsonResponse.stringOf(L"brand");
    country = jsonResponse.stringOf(L"country");
    customer = jsonResponse.stringOf(L"customer");
    cvc_check = jsonResponse.IsNullOf(L"cvc_check");
    dynamic_last4 = jsonResponse.IsNullOf(L"dynamic_last4");
    exp_month = jsonResponse.IntOf(L"exp_month");
    exp_year = jsonResponse.IntOf(L"exp_year");
    fingerprint = jsonResponse.stringOf(L"fingerprint");
    funding = jsonResponse.stringOf(L"funding");
    last4 = jsonResponse.stringOf(L"last4");
    name = jsonResponse.stringOf(L"name");
    tokenization_method = jsonResponse.IsNullOf(L"tokenization_method");
    }

Sample JSON Response Body

{
  "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": "Liam Thomas",
  "tokenization_method": null
}