Sample code for 30+ languages & platforms
Unicode C

eBay -- Create or Replace Inventory Item (2nd example)

See more eBay Examples

Another example for creating an inventory item, with different data.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkJsonObjectW.h>
#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkJsonObjectW json;
    const wchar_t *accessToken;
    HCkHttpW http;
    const wchar_t *url;
    HCkStringBuilderW sbAuth;
    HCkHttpResponseW resp;

    success = FALSE;

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

    //  This example sends the following sample PUT request to create (or replace) a new inventory item.

    //  { 
    //      "product": { 
    //          "title": "Test listing - do not bid or buy - awesome Apple watch test 2",
    //          "aspects": { 
    //              "Feature" : ["Water resistance", "GPS"],
    //              "CPU" : ["Dual-Core Processor"]
    //          },
    //          "description": "Test listing - do not bid or buy \n Built-in GPS. Water resistance to 50 meters.1 A new lightning-fast dual-core processor. And a display that\u2019s two times brighter than before. Full of features that help you stay active, motivated, and connected, Apple Watch Series 2 is designed for all the ways you move ",
    //          "upc": ["888462079525"],
    //          "imageUrls": [
    //              "http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/S/1/S1/42/S1-42-alu-silver-sport-white-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247758975",
    //              "http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/4/2/42/stainless/42-stainless-sport-white-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247760390",
    //              "http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/4/2/42/ceramic/42-ceramic-sport-cloud-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247758007"
    //          ]
    //      },
    //      "condition": "NEW",
    //      "packageWeightAndSize": { 
    //          "dimensions": { 
    //              "height": 5,
    //              "length": 10,
    //              "width": 15,
    //              "unit": "INCH"
    //          },
    //          "packageType": "MAILING_BOX",
    //          "weight": { 
    //              "value": 2,
    //              "unit": "POUND"
    //          }
    //      },
    //      "availability": { 
    //          "shipToLocationAvailability": { 
    //              "quantity": 10
    //          }
    //      }
    //  }

    //  First, generate the JSON using this code:
    json = CkJsonObjectW_Create();
    CkJsonObjectW_putEmitCompact(json,FALSE);

    CkJsonObjectW_UpdateString(json,L"product.title",L"Test listing - do not bid or buy - awesome Apple watch test 2");
    CkJsonObjectW_UpdateString(json,L"product.aspects.Feature[0]",L"Water resistance");
    CkJsonObjectW_UpdateString(json,L"product.aspects.Feature[1]",L"GPS");
    CkJsonObjectW_UpdateString(json,L"product.aspects.CPU[0]",L"Dual-Core Processor");
    CkJsonObjectW_UpdateString(json,L"product.description",L"Test listing - do not bid or buy\\n Built-in GPS. Water resistance to 50 meters.1 A new lightning-fast dual-core processor. And a display that�s two times brighter than before. Full of features that help you stay active, motivated, and connected, Apple Watch Series 2 is designed for all the ways you move ");
    CkJsonObjectW_UpdateString(json,L"product.upc[0]",L"888462079525");
    CkJsonObjectW_UpdateString(json,L"product.imageUrls[0]",L"http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/S/1/S1/42/S1-42-alu-silver-sport-white-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247758975");
    CkJsonObjectW_UpdateString(json,L"product.imageUrls[1]",L"http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/4/2/42/stainless/42-stainless-sport-white-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247760390");
    CkJsonObjectW_UpdateString(json,L"product.imageUrls[2]",L"http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/4/2/42/ceramic/42-ceramic-sport-cloud-grid?wid=332&hei=392&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0.5,0.5,0,0&iccEmbed=0&layer=comp&.v=1472247758007");
    CkJsonObjectW_UpdateString(json,L"condition",L"NEW");
    CkJsonObjectW_UpdateNumber(json,L"packageWeightAndSize.dimensions.height",L"5");
    CkJsonObjectW_UpdateNumber(json,L"packageWeightAndSize.dimensions.length",L"10");
    CkJsonObjectW_UpdateNumber(json,L"packageWeightAndSize.dimensions.width",L"15");
    CkJsonObjectW_UpdateString(json,L"packageWeightAndSize.dimensions.unit",L"INCH");
    CkJsonObjectW_UpdateString(json,L"packageWeightAndSize.packageType",L"MAILING_BOX");
    CkJsonObjectW_UpdateNumber(json,L"packageWeightAndSize.weight.value",L"2");
    CkJsonObjectW_UpdateString(json,L"packageWeightAndSize.weight.unit",L"POUND");
    CkJsonObjectW_UpdateNumber(json,L"availability.shipToLocationAvailability.quantity",L"10");

    //  Show the JSON to be sent:
    wprintf(L"%s\n",CkJsonObjectW_emit(json));

    //  Use a previously obtained user token.  The token should look something like this:
    //  "v^1.1#i^1#r^0#p^3#I^3#f^0#t^H4sIAAAAAAAAAOVXa2wUVRTu9k ... 89xuCWYREAAA=="
    accessToken = L"EBAY_ACCESS_TOKEN";

    http = CkHttpW_Create();

    //  This example uses the sandbox.  
    //  Change "api.sandbox.ebay.com" to "api.ebay.com" to use the production system.
    //  Note: The last part of the url is the SKU.  In this URL, the SKU is "AppleWatch".
    url = L"https://api.sandbox.ebay.com/sell/inventory/v1/inventory_item/AppleWatch";
    CkJsonObjectW_putEmitCompact(json,TRUE);

    //  Set your Content-Language to whatever is desired.
    CkHttpW_SetRequestHeader(http,L"Content-Language",L"en-US");

    //  Add our access token to the request, which is a header
    //  having the following format:
    //  Authorization: Bearer <userAccessToken>
    sbAuth = CkStringBuilderW_Create();
    CkStringBuilderW_Append(sbAuth,L"Bearer ");
    CkStringBuilderW_Append(sbAuth,accessToken);
    CkHttpW_SetRequestHeader(http,L"Authorization",CkStringBuilderW_getAsString(sbAuth));

    CkHttpW_putAccept(http,L"application/json");
    CkHttpW_putAllowGzip(http,FALSE);

    resp = CkHttpResponseW_Create();
    success = CkHttpW_HttpStr(http,L"PUT",url,CkJsonObjectW_emit(json),L"utf-8",L"application/json",resp);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkJsonObjectW_Dispose(json);
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbAuth);
        CkHttpResponseW_Dispose(resp);
        return;
    }

    wprintf(L"Response status code = %d\n",CkHttpResponseW_getStatusCode(resp));

    if (CkHttpW_getLastStatus(http) != 204) {
        wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
        wprintf(L"Failed\n");
        CkJsonObjectW_Dispose(json);
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbAuth);
        CkHttpResponseW_Dispose(resp);
        return;
    }

    //  On success (status code = 204), there is no output payload (strResponse will be empty).
    wprintf(L"Inventory item successfully created.\n");


    CkJsonObjectW_Dispose(json);
    CkHttpW_Dispose(http);
    CkStringBuilderW_Dispose(sbAuth);
    CkHttpResponseW_Dispose(resp);

    }