Sample code for 30+ languages & platforms
C

Etsy: Get the Inventory for a Listing

See more Etsy Examples

Gets the inventory for a listing.

Chilkat C Downloads

C
#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
#include <C_CkJsonObject.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttp http;
    HCkStringBuilder sbResponseBody;
    HCkJsonObject jResp;
    int respStatusCode;
    int product_id;
    int j;
    int count_j;
    int offering_id;
    int priceAmount;
    int priceDivisor;
    const char *priceCurrency_code;
    const char *priceCurrency_formatted_short;
    const char *priceCurrency_formatted_long;
    const char *priceCurrency_formatted_raw;
    int quantity;
    int count;
    const char *paramsListing_id;
    BOOL paramsWrite_missing_inventory;
    const char *v_type;
    int i;
    int count_i;

    success = FALSE;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttp_Create();

    // Implements the following CURL command:

    // curl -X GET \
    //   https://openapi.etsy.com/v2/listings/listing_id/inventory?api_key=MY_ETSY_KEYSTRING

    sbResponseBody = CkStringBuilder_Create();
    success = CkHttp_QuickGetSb(http,"https://openapi.etsy.com/v2/listings/listing_id/inventory?api_key=MY_ETSY_KEYSTRING",sbResponseBody);
    if (success == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    jResp = CkJsonObject_Create();
    CkJsonObject_LoadSb(jResp,sbResponseBody);
    CkJsonObject_putEmitCompact(jResp,FALSE);

    printf("Response Body:\n");
    printf("%s\n",CkJsonObject_emit(jResp));

    respStatusCode = CkHttp_getLastStatus(http);
    printf("Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        printf("Response Header:\n");
        printf("%s\n",CkHttp_lastHeader(http));
        printf("Failed.\n");
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        CkJsonObject_Dispose(jResp);
        return;
    }

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "count": 1,
    //   "results": {
    //     "products": [
    //       {
    //         "product_id": 3361120103,
    //         "property_values": [
    //         ],
    //         "offerings": [
    //           {
    //             "offering_id": 3579642570,
    //             "price": {
    //               "amount": 16000,
    //               "divisor": 100,
    //               "currency_code": "USD",
    //               "currency_formatted_short": "$160.00",
    //               "currency_formatted_long": "$160.00 USD",
    //               "currency_formatted_raw": "160.00"
    //             },
    //             "quantity": 1
    //           }
    //         ]
    //       }
    //     ]
    //   },
    //   "params": {
    //     "listing_id": "720138253",
    //     "write_missing_inventory": false
    //   },
    //   "type": "ListingInventory",
    //   "pagination": {}
    // }

    // Sample code for parsing the JSON response...
    // Use the following online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
    // See this example explaining how this memory should be used: const char * functions.

    count = CkJsonObject_IntOf(jResp,"count");
    paramsListing_id = CkJsonObject_stringOf(jResp,"params.listing_id");
    paramsWrite_missing_inventory = CkJsonObject_BoolOf(jResp,"params.write_missing_inventory");
    v_type = CkJsonObject_stringOf(jResp,"type");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"results.products");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        product_id = CkJsonObject_IntOf(jResp,"results.products[i].product_id");
        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"results.products[i].property_values");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"results.products[i].offerings");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            offering_id = CkJsonObject_IntOf(jResp,"results.products[i].offerings[j].offering_id");
            priceAmount = CkJsonObject_IntOf(jResp,"results.products[i].offerings[j].price.amount");
            priceDivisor = CkJsonObject_IntOf(jResp,"results.products[i].offerings[j].price.divisor");
            priceCurrency_code = CkJsonObject_stringOf(jResp,"results.products[i].offerings[j].price.currency_code");
            priceCurrency_formatted_short = CkJsonObject_stringOf(jResp,"results.products[i].offerings[j].price.currency_formatted_short");
            priceCurrency_formatted_long = CkJsonObject_stringOf(jResp,"results.products[i].offerings[j].price.currency_formatted_long");
            priceCurrency_formatted_raw = CkJsonObject_stringOf(jResp,"results.products[i].offerings[j].price.currency_formatted_raw");
            quantity = CkJsonObject_IntOf(jResp,"results.products[i].offerings[j].quantity");
            j = j + 1;
        }

        i = i + 1;
    }



    CkHttp_Dispose(http);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }