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

C Example

#include <C_CkRest.h>
#include <C_CkJsonObject.h>

void ChilkatSample(void)
    {
    HCkRest rest;
    BOOL success;
    BOOL bTls;
    int port;
    BOOL bAutoReconnect;
    const char *strResponseBody;
    HCkJsonObject jsonResponse;
    const char *id;
    const char *object;
    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 char *brand;
    const char *country;
    const char *customer;
    BOOL cvc_check;
    BOOL dynamic_last4;
    int exp_month;
    int exp_year;
    const char *fingerprint;
    const char *funding;
    const char *last4;
    const char *name;
    BOOL tokenization_method;

    rest = CkRest_Create();

    //  URL: https://api.stripe.com/v1/customers/cus_CBbg3iRMzWBjoe/sources/card_1BnETKGswQrCoh0Xhu1A6BfL
    bTls = TRUE;
    port = 443;
    bAutoReconnect = TRUE;
    success = CkRest_Connect(rest,"api.stripe.com",port,bTls,bAutoReconnect);
    if (success != TRUE) {
        printf("ConnectFailReason: %d\n",CkRest_getConnectFailReason(rest));
        printf("%s\n",CkRest_lastErrorText(rest));
        CkRest_Dispose(rest);
        return;
    }

    CkRest_SetAuthBasic(rest,"STRIPE_SECRET_KEY","");

    CkRest_AddQueryParam(rest,"name","Liam Thomas");

    strResponseBody = CkRest_fullRequestFormUrlEncoded(rest,"POST","/v1/customers/cus_CBbg3iRMzWBjoe/sources/card_1BnETKGswQrCoh0Xhu1A6BfL");
    if (CkRest_getLastMethodSuccess(rest) != TRUE) {
        printf("%s\n",CkRest_lastErrorText(rest));
        CkRest_Dispose(rest);
        return;
    }

    jsonResponse = CkJsonObject_Create();
    CkJsonObject_Load(jsonResponse,strResponseBody);

    id = CkJsonObject_stringOf(jsonResponse,"id");
    object = CkJsonObject_stringOf(jsonResponse,"object");
    address_city = CkJsonObject_IsNullOf(jsonResponse,"address_city");
    address_country = CkJsonObject_IsNullOf(jsonResponse,"address_country");
    address_line1 = CkJsonObject_IsNullOf(jsonResponse,"address_line1");
    address_line1_check = CkJsonObject_IsNullOf(jsonResponse,"address_line1_check");
    address_line2 = CkJsonObject_IsNullOf(jsonResponse,"address_line2");
    address_state = CkJsonObject_IsNullOf(jsonResponse,"address_state");
    address_zip = CkJsonObject_IsNullOf(jsonResponse,"address_zip");
    address_zip_check = CkJsonObject_IsNullOf(jsonResponse,"address_zip_check");
    brand = CkJsonObject_stringOf(jsonResponse,"brand");
    country = CkJsonObject_stringOf(jsonResponse,"country");
    customer = CkJsonObject_stringOf(jsonResponse,"customer");
    cvc_check = CkJsonObject_IsNullOf(jsonResponse,"cvc_check");
    dynamic_last4 = CkJsonObject_IsNullOf(jsonResponse,"dynamic_last4");
    exp_month = CkJsonObject_IntOf(jsonResponse,"exp_month");
    exp_year = CkJsonObject_IntOf(jsonResponse,"exp_year");
    fingerprint = CkJsonObject_stringOf(jsonResponse,"fingerprint");
    funding = CkJsonObject_stringOf(jsonResponse,"funding");
    last4 = CkJsonObject_stringOf(jsonResponse,"last4");
    name = CkJsonObject_stringOf(jsonResponse,"name");
    tokenization_method = CkJsonObject_IsNullOf(jsonResponse,"tokenization_method");


    CkRest_Dispose(rest);
    CkJsonObject_Dispose(jsonResponse);

    }

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
}