Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

C Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Google Vision
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun

Mastercard
MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(C) WooCommerce List All Products

See more WooCommerce Examples

Gets WooCommerce product information in JSON format.

For more information, see https://woocommerce.github.io/woocommerce-rest-api-docs/#list-all-products

Chilkat C/C++ Library Downloads

MS Visual C/C++

Linux/CentOS C/C++

Alpine Linux C/C++

MAC OS X C/C++

armhf/aarch64 C/C++

C++ Builder

iOS C/C++

Android C/C++

Solaris C/C++

MinGW C/C++

#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
#include <C_CkJsonArray.h>
#include <C_CkDtObj.h>
#include <C_CkJsonObject.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkStringBuilder sbResponseBody;
    HCkJsonArray jarrResp;
    int respStatusCode;
    HCkDtObj date_created;
    HCkDtObj date_created_gmt;
    HCkDtObj date_modified;
    HCkDtObj date_modified_gmt;
    HCkDtObj date_on_sale_from;
    HCkDtObj date_on_sale_from_gmt;
    HCkDtObj date_on_sale_to;
    HCkDtObj date_on_sale_to_gmt;
    HCkJsonObject json;
    int id;
    const char *name;
    const char *slug;
    const char *permalink;
    const char *v_type;
    const char *status;
    BOOL featured;
    const char *catalog_visibility;
    const char *description;
    const char *short_description;
    const char *sku;
    const char *price;
    const char *regular_price;
    const char *sale_price;
    const char *price_html;
    BOOL on_sale;
    BOOL purchasable;
    int total_sales;
    BOOL v_virtual;
    BOOL downloadable;
    int download_limit;
    int download_expiry;
    const char *external_url;
    const char *button_text;
    const char *tax_status;
    const char *tax_class;
    BOOL manage_stock;
    const char *stock_quantity;
    const char *stock_status;
    const char *backorders;
    BOOL backorders_allowed;
    BOOL backordered;
    BOOL sold_individually;
    const char *weight;
    const char *dimensionsLength;
    const char *dimensionsWidth;
    const char *dimensionsHeight;
    BOOL shipping_required;
    BOOL shipping_taxable;
    const char *shipping_class;
    int shipping_class_id;
    BOOL reviews_allowed;
    const char *average_rating;
    int rating_count;
    int parent_id;
    const char *purchase_note;
    int menu_order;
    int j;
    int count_j;
    int intVal;
    const char *src;
    const char *alt;
    int position;
    BOOL visible;
    BOOL variation;
    int k;
    int count_k;
    const char *strVal;
    const char *v_option;
    const char *href;
    int i;
    int count_i;

    // 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 https://example.com/wp-json/wc/v3/products \
    //     -u consumer_key:consumer_secret

    // Use the following online tool to generate HTTP code from a CURL command
    // Convert a cURL Command to HTTP Source Code

    CkHttp_putBasicAuth(http,TRUE);
    CkHttp_putLogin(http,"consumer_key");
    CkHttp_putPassword(http,"consumer_secret");

    sbResponseBody = CkStringBuilder_Create();
    success = CkHttp_QuickGetSb(http,"https://example.com/wp-json/wc/v3/products",sbResponseBody);
    if (success == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    jarrResp = CkJsonArray_Create();
    CkJsonArray_LoadSb(jarrResp,sbResponseBody);
    CkJsonArray_putEmitCompact(jarrResp,FALSE);

    printf("Response Body:\n");
    printf("%s\n",CkJsonArray_emit(jarrResp));

    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);
        CkJsonArray_Dispose(jarrResp);
        return;
    }

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

    // [
    //   {
    //     "id": 799,
    //     "name": "Ship Your Idea",
    //     "slug": "ship-your-idea-22",
    //     "permalink": "https://example.com/product/ship-your-idea-22/",
    //     "date_created": "2017-03-23T17:03:12",
    //     "date_created_gmt": "2017-03-23T20:03:12",
    //     "date_modified": "2017-03-23T17:03:12",
    //     "date_modified_gmt": "2017-03-23T20:03:12",
    //     "type": "variable",
    //     "status": "publish",
    //     "featured": false,
    //     "catalog_visibility": "visible",
    //     "description": "<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\n",
    //     "short_description": "<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>\n",
    //     "sku": "",
    //     "price": "",
    //     "regular_price": "",
    //     "sale_price": "",
    //     "date_on_sale_from": null,
    //     "date_on_sale_from_gmt": null,
    //     "date_on_sale_to": null,
    //     "date_on_sale_to_gmt": null,
    //     "price_html": "",
    //     "on_sale": false,
    //     "purchasable": false,
    //     "total_sales": 0,
    //     "virtual": false,
    //     "downloadable": false,
    //     "downloads": [
    //     ],
    //     "download_limit": -1,
    //     "download_expiry": -1,
    //     "external_url": "",
    //     "button_text": "",
    //     "tax_status": "taxable",
    //     "tax_class": "",
    //     "manage_stock": false,
    //     "stock_quantity": null,
    //     "stock_status": "instock",
    //     "backorders": "no",
    //     "backorders_allowed": false,
    //     "backordered": false,
    //     "sold_individually": false,
    //     "weight": "",
    //     "dimensions": {
    //       "length": "",
    //       "width": "",
    //       "height": ""
    //     },
    //     "shipping_required": true,
    //     "shipping_taxable": true,
    //     "shipping_class": "",
    //     "shipping_class_id": 0,
    //     "reviews_allowed": true,
    //     "average_rating": "0.00",
    //     "rating_count": 0,
    //     "related_ids": [
    //       31,
    //       22,
    //       369,
    //       414,
    //       56
    //     ],
    //     "upsell_ids": [
    //     ],
    //     "cross_sell_ids": [
    //     ],
    //     "parent_id": 0,
    //     "purchase_note": "",
    //     "categories": [
    //       {
    //         "id": 9,
    //         "name": "Clothing",
    //         "slug": "clothing"
    //       },
    //       {
    //         "id": 14,
    //         "name": "T-shirts",
    //         "slug": "t-shirts"
    //       }
    //     ],
    //     "tags": [
    //     ],
    //     "images": [
    //       {
    //         "id": 795,
    //         "date_created": "2017-03-23T14:03:08",
    //         "date_created_gmt": "2017-03-23T20:03:08",
    //         "date_modified": "2017-03-23T14:03:08",
    //         "date_modified_gmt": "2017-03-23T20:03:08",
    //         "src": "https://example.com/wp-content/uploads/2017/03/T_4_front-11.jpg",
    //         "name": "",
    //         "alt": ""
    //       },
    //       {
    //         "id": 796,
    //         "date_created": "2017-03-23T14:03:09",
    //         "date_created_gmt": "2017-03-23T20:03:09",
    //         "date_modified": "2017-03-23T14:03:09",
    //         "date_modified_gmt": "2017-03-23T20:03:09",
    //         "src": "https://example.com/wp-content/uploads/2017/03/T_4_back-10.jpg",
    //         "name": "",
    //         "alt": ""
    //       },
    //       {
    //         "id": 797,
    //         "date_created": "2017-03-23T14:03:10",
    //         "date_created_gmt": "2017-03-23T20:03:10",
    //         "date_modified": "2017-03-23T14:03:10",
    //         "date_modified_gmt": "2017-03-23T20:03:10",
    //         "src": "https://example.com/wp-content/uploads/2017/03/T_3_front-10.jpg",
    //         "name": "",
    //         "alt": ""
    //       },
    //       {
    //         "id": 798,
    //         "date_created": "2017-03-23T14:03:11",
    //         "date_created_gmt": "2017-03-23T20:03:11",
    //         "date_modified": "2017-03-23T14:03:11",
    //         "date_modified_gmt": "2017-03-23T20:03:11",
    //         "src": "https://example.com/wp-content/uploads/2017/03/T_3_back-10.jpg",
    //         "name": "",
    //         "alt": ""
    //       }
    //     ],
    //     "attributes": [
    //       {
    //         "id": 6,
    //         "name": "Color",
    //         "position": 0,
    //         "visible": false,
    //         "variation": true,
    //         "options": [
    //           "Black",
    //           "Green"
    //         ]
    //       },
    //       {
    //         "id": 0,
    //         "name": "Size",
    //         "position": 0,
    //         "visible": true,
    //         "variation": true,
    //         "options": [
    //           "S",
    //           "M"
    //         ]
    //       }
    //     ],
    //     "default_attributes": [
    //     ],
    //     "variations": [
    //     ],
    //     "grouped_products": [
    //     ],
    //     "menu_order": 0,
    //     "meta_data": [
    //     ],
    //     "_links": {
    //       "self": [
    //         {
    //           "href": "https://example.com/wp-json/wc/v3/products/799"
    //         }
    //       ],
    //       "collection": [
    //         {
    //           "href": "https://example.com/wp-json/wc/v3/products"
    //         }
    //       ]
    //     }
    //   },
    //   {
    //     "id": 794,
    //     "name": "Premium Quality",
    //     "slug": "premium-quality-19",
    //     "permalink": "https://example.com/product/premium-quality-19/",
    //     "date_created": "2017-03-23T17:01:14",
    //     "date_created_gmt": "2017-03-23T20:01:14",
    //     "date_modified": "2017-03-23T17:01:14",
    //     "date_modified_gmt": "2017-03-23T20:01:14",
    //     "type": "simple",
    //     "status": "publish",
    //     "featured": false,
    //     "catalog_visibility": "visible",
    //     "description": "<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\n",
    //     "short_description": "<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>\n",
    //     "sku": "",
    //     "price": "21.99",
    //     "regular_price": "21.99",
    //     "sale_price": "",
    //     "date_on_sale_from": null,
    //     "date_on_sale_from_gmt": null,
    //     "date_on_sale_to": null,
    //     "date_on_sale_to_gmt": null,
    //     "price_html": "<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>21.99</span>",
    //     "on_sale": false,
    //     "purchasable": true,
    //     "total_sales": 0,
    //     "virtual": false,
    //     "downloadable": false,
    //     "downloads": [
    //     ],
    //     "download_limit": -1,
    //     "download_expiry": -1,
    //     "external_url": "",
    //     "button_text": "",
    //     "tax_status": "taxable",
    //     "tax_class": "",
    //     "manage_stock": false,
    //     "stock_quantity": null,
    //     "stock_status": "instock",
    //     "backorders": "no",
    //     "backorders_allowed": false,
    //     "backordered": false,
    //     "sold_individually": false,
    //     "weight": "",
    //     "dimensions": {
    //       "length": "",
    //       "width": "",
    //       "height": ""
    //     },
    //     "shipping_required": true,
    //     "shipping_taxable": true,
    //     "shipping_class": "",
    //     "shipping_class_id": 0,
    //     "reviews_allowed": true,
    //     "average_rating": "0.00",
    //     "rating_count": 0,
    //     "related_ids": [
    //       463,
    //       47,
    //       31,
    //       387,
    //       458
    //     ],
    //     "upsell_ids": [
    //     ],
    //     "cross_sell_ids": [
    //     ],
    //     "parent_id": 0,
    //     "purchase_note": "",
    //     "categories": [
    //       {
    //         "id": 9,
    //         "name": "Clothing",
    //         "slug": "clothing"
    //       },
    //       {
    //         "id": 14,
    //         "name": "T-shirts",
    //         "slug": "t-shirts"
    //       }
    //     ],
    //     "tags": [
    //     ],
    //     "images": [
    //       {
    //         "id": 792,
    //         "date_created": "2017-03-23T14:01:13",
    //         "date_created_gmt": "2017-03-23T20:01:13",
    //         "date_modified": "2017-03-23T14:01:13",
    //         "date_modified_gmt": "2017-03-23T20:01:13",
    //         "src": "https://example.com/wp-content/uploads/2017/03/T_2_front-4.jpg",
    //         "name": "",
    //         "alt": ""
    //       },
    //       {
    //         "id": 793,
    //         "date_created": "2017-03-23T14:01:14",
    //         "date_created_gmt": "2017-03-23T20:01:14",
    //         "date_modified": "2017-03-23T14:01:14",
    //         "date_modified_gmt": "2017-03-23T20:01:14",
    //         "src": "https://example.com/wp-content/uploads/2017/03/T_2_back-2.jpg",
    //         "name": "",
    //         "alt": ""
    //       }
    //     ],
    //     "attributes": [
    //     ],
    //     "default_attributes": [
    //       {
    //         "id": 6,
    //         "name": "Color",
    //         "option": "black"
    //       },
    //       {
    //         "id": 0,
    //         "name": "Size",
    //         "option": "S"
    //       }
    //     ],
    //     "variations": [
    //     ],
    //     "grouped_products": [
    //     ],
    //     "menu_order": 0,
    //     "meta_data": [
    //     ],
    //     "_links": {
    //       "self": [
    //         {
    //           "href": "https://example.com/wp-json/wc/v3/products/794"
    //         }
    //       ],
    //       "collection": [
    //         {
    //           "href": "https://example.com/wp-json/wc/v3/products"
    //         }
    //       ]
    //     }
    //   }
    // ]

    // 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.

    date_created = CkDtObj_Create();
    date_created_gmt = CkDtObj_Create();
    date_modified = CkDtObj_Create();
    date_modified_gmt = CkDtObj_Create();
    date_on_sale_from = CkDtObj_Create();
    date_on_sale_from_gmt = CkDtObj_Create();
    date_on_sale_to = CkDtObj_Create();
    date_on_sale_to_gmt = CkDtObj_Create();

    i = 0;
    count_i = CkJsonArray_getSize(jarrResp);
    while (i < count_i) {
        json = CkJsonArray_ObjectAt(jarrResp,i);
        id = CkJsonObject_IntOf(json,"id");
        name = CkJsonObject_stringOf(json,"name");
        slug = CkJsonObject_stringOf(json,"slug");
        permalink = CkJsonObject_stringOf(json,"permalink");
        CkJsonObject_DtOf(json,"date_created",FALSE,date_created);
        CkJsonObject_DtOf(json,"date_created_gmt",FALSE,date_created_gmt);
        CkJsonObject_DtOf(json,"date_modified",FALSE,date_modified);
        CkJsonObject_DtOf(json,"date_modified_gmt",FALSE,date_modified_gmt);
        v_type = CkJsonObject_stringOf(json,"type");
        status = CkJsonObject_stringOf(json,"status");
        featured = CkJsonObject_BoolOf(json,"featured");
        catalog_visibility = CkJsonObject_stringOf(json,"catalog_visibility");
        description = CkJsonObject_stringOf(json,"description");
        short_description = CkJsonObject_stringOf(json,"short_description");
        sku = CkJsonObject_stringOf(json,"sku");
        price = CkJsonObject_stringOf(json,"price");
        regular_price = CkJsonObject_stringOf(json,"regular_price");
        sale_price = CkJsonObject_stringOf(json,"sale_price");
        CkJsonObject_DtOf(json,"date_on_sale_from",FALSE,date_on_sale_from);
        CkJsonObject_DtOf(json,"date_on_sale_from_gmt",FALSE,date_on_sale_from_gmt);
        CkJsonObject_DtOf(json,"date_on_sale_to",FALSE,date_on_sale_to);
        CkJsonObject_DtOf(json,"date_on_sale_to_gmt",FALSE,date_on_sale_to_gmt);
        price_html = CkJsonObject_stringOf(json,"price_html");
        on_sale = CkJsonObject_BoolOf(json,"on_sale");
        purchasable = CkJsonObject_BoolOf(json,"purchasable");
        total_sales = CkJsonObject_IntOf(json,"total_sales");
        v_virtual = CkJsonObject_BoolOf(json,"virtual");
        downloadable = CkJsonObject_BoolOf(json,"downloadable");
        download_limit = CkJsonObject_IntOf(json,"download_limit");
        download_expiry = CkJsonObject_IntOf(json,"download_expiry");
        external_url = CkJsonObject_stringOf(json,"external_url");
        button_text = CkJsonObject_stringOf(json,"button_text");
        tax_status = CkJsonObject_stringOf(json,"tax_status");
        tax_class = CkJsonObject_stringOf(json,"tax_class");
        manage_stock = CkJsonObject_BoolOf(json,"manage_stock");
        stock_quantity = CkJsonObject_stringOf(json,"stock_quantity");
        stock_status = CkJsonObject_stringOf(json,"stock_status");
        backorders = CkJsonObject_stringOf(json,"backorders");
        backorders_allowed = CkJsonObject_BoolOf(json,"backorders_allowed");
        backordered = CkJsonObject_BoolOf(json,"backordered");
        sold_individually = CkJsonObject_BoolOf(json,"sold_individually");
        weight = CkJsonObject_stringOf(json,"weight");
        dimensionsLength = CkJsonObject_stringOf(json,"dimensions.length");
        dimensionsWidth = CkJsonObject_stringOf(json,"dimensions.width");
        dimensionsHeight = CkJsonObject_stringOf(json,"dimensions.height");
        shipping_required = CkJsonObject_BoolOf(json,"shipping_required");
        shipping_taxable = CkJsonObject_BoolOf(json,"shipping_taxable");
        shipping_class = CkJsonObject_stringOf(json,"shipping_class");
        shipping_class_id = CkJsonObject_IntOf(json,"shipping_class_id");
        reviews_allowed = CkJsonObject_BoolOf(json,"reviews_allowed");
        average_rating = CkJsonObject_stringOf(json,"average_rating");
        rating_count = CkJsonObject_IntOf(json,"rating_count");
        parent_id = CkJsonObject_IntOf(json,"parent_id");
        purchase_note = CkJsonObject_stringOf(json,"purchase_note");
        menu_order = CkJsonObject_IntOf(json,"menu_order");
        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"downloads");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"related_ids");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            intVal = CkJsonObject_IntOf(json,"related_ids[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"upsell_ids");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"cross_sell_ids");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"categories");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            id = CkJsonObject_IntOf(json,"categories[j].id");
            name = CkJsonObject_stringOf(json,"categories[j].name");
            slug = CkJsonObject_stringOf(json,"categories[j].slug");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"tags");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"images");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            id = CkJsonObject_IntOf(json,"images[j].id");
            CkJsonObject_DtOf(json,"images[j].date_created",FALSE,date_created);
            CkJsonObject_DtOf(json,"images[j].date_created_gmt",FALSE,date_created_gmt);
            CkJsonObject_DtOf(json,"images[j].date_modified",FALSE,date_modified);
            CkJsonObject_DtOf(json,"images[j].date_modified_gmt",FALSE,date_modified_gmt);
            src = CkJsonObject_stringOf(json,"images[j].src");
            name = CkJsonObject_stringOf(json,"images[j].name");
            alt = CkJsonObject_stringOf(json,"images[j].alt");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"attributes");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            id = CkJsonObject_IntOf(json,"attributes[j].id");
            name = CkJsonObject_stringOf(json,"attributes[j].name");
            position = CkJsonObject_IntOf(json,"attributes[j].position");
            visible = CkJsonObject_BoolOf(json,"attributes[j].visible");
            variation = CkJsonObject_BoolOf(json,"attributes[j].variation");
            k = 0;
            count_k = CkJsonObject_SizeOfArray(json,"attributes[j].options");
            while (k < count_k) {
                CkJsonObject_putK(json,k);
                strVal = CkJsonObject_stringOf(json,"attributes[j].options[k]");
                k = k + 1;
            }

            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"default_attributes");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            id = CkJsonObject_IntOf(json,"default_attributes[j].id");
            name = CkJsonObject_stringOf(json,"default_attributes[j].name");
            v_option = CkJsonObject_stringOf(json,"default_attributes[j].option");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"variations");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"grouped_products");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"meta_data");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"_links.self");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            href = CkJsonObject_stringOf(json,"_links.self[j].href");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"_links.collection");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            href = CkJsonObject_stringOf(json,"_links.collection[j].href");
            j = j + 1;
        }

        CkJsonObject_Dispose(json);
        i = i + 1;
    }



    CkHttp_Dispose(http);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonArray_Dispose(jarrResp);
    CkDtObj_Dispose(date_created);
    CkDtObj_Dispose(date_created_gmt);
    CkDtObj_Dispose(date_modified);
    CkDtObj_Dispose(date_modified_gmt);
    CkDtObj_Dispose(date_on_sale_from);
    CkDtObj_Dispose(date_on_sale_from_gmt);
    CkDtObj_Dispose(date_on_sale_to);
    CkDtObj_Dispose(date_on_sale_to_gmt);

    }

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.