Sample code for 30+ languages & platforms
Unicode C++

MercadoLibre - Search Orders from a Buyer

See more MercadoLibre Examples

Search for orders from a buyer.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkDtObjW.h>

void ChilkatSample(void)
    {
    bool success = false;

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

    CkHttpW http;

    // First get our previously obtained OAuth2 access token.
    CkJsonObjectW jsonToken;
    success = jsonToken.LoadFile(L"qa_data/tokens/mercadolibre.json");

    // Implements the following CURL command:

    // curl -X GET https://api.mercadolibre.com/orders/search?buyer=$BUYER_ID&access_token=$ACCESS_TOKEN

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

    http.SetUrlVar(L"access_token",jsonToken.stringOf(L"access_token"));
    // Use an actual buyer ID here..
    http.SetUrlVar(L"buyer_id",L"577815702");

    CkStringBuilderW sbResponseBody;
    success = http.QuickGetSb(L"https://api.mercadolibre.com/orders/search?buyer={$buyer_id}&access_token={$access_token}",sbResponseBody);
    if (success == false) {
        wprintf(L"%s\n",http.lastErrorText());
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",http.lastHeader());
        wprintf(L"----\n");
        wprintf(L"Response Body:\n");
        wprintf(L"%s\n",sbResponseBody.getAsString());
        wprintf(L"Failed.\n");
        return;
    }

    CkJsonObjectW jResp;
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",jResp.emit());

    int respStatusCode = http.get_LastStatus();
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",http.lastHeader());
        wprintf(L"----\n");
        wprintf(L"Response Body:\n");
        wprintf(L"%s\n",sbResponseBody.getAsString());
        wprintf(L"Failed.\n");
        return;
    }

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

    // {
    //   "query": "2032217210",
    //   "results": [
    //     {
    //       "seller": {
    //         "phone": {
    //           "number": "11971427863",
    //           "extension": "",
    //           "area_code": null,
    //           "verified": false
    //         },
    //         "alternative_phone": {
    //           "number": "",
    //           "extension": "",
    //           "area_code": ""
    //         },
    //         "nickname": "VENDASDKMB",
    //         "last_name": "Cheracomo",
    //         "id": 239432672,
    //         "first_name": "Demétrio",
    //         "email": "dcherac.8m6k0q+2-ogiydgmrsge3tenby@mail.mercadolivre.com"
    //       },
    //       "payments": [
    //         {
    //           "reason": "Kit Com 03 Adesivo Spray 3m 75 Cola Silk Sublimação 300g",
    //           "status_code": null,
    //           "total_paid_amount": 129.95,
    //           "operation_type": "regular_payment",
    //           "transaction_amount": 129.95,
    //           "date_approved": "2019-05-22T03:51:07.000-04:00",
    //           "collector": {
    //             "id": 239432672
    //           },
    //           "coupon_id": null,
    //           "installments": 1,
    //           "authorization_code": "008877",
    //           "taxes_amount": 0,
    //           "id": 4792155710,
    //           "date_last_modified": "2019-05-22T03:51:07.000-04:00",
    //           "coupon_amount": 0,
    //           "available_actions": [
    //             "refund"
    //           ],
    //           "shipping_cost": 0,
    //           "installment_amount": 129.95,
    //           "date_created": "2019-05-22T03:51:05.000-04:00",
    //           "activation_uri": null,
    //           "overpaid_amount": 0,
    //           "card_id": 203453778,
    //           "status_detail": "accredited",
    //           "issuer_id": "24",
    //           "payment_method_id": "master",
    //           "payment_type": "credit_card",
    //           "deferred_period": null,
    //           "atm_transfer_reference": {
    //             "transaction_id": "135292",
    //             "company_id": null
    //           },
    //           "site_id": "MLB",
    //           "payer_id": 89660613,
    //           "marketplace_fee": 14.290000000000001,
    //           "order_id": 2032217210,
    //           "currency_id": "BRL",
    //           "status": "approved",
    //           "transaction_order_id": null
    //         }
    //       ],
    //       "fulfilled": true,
    //       "buying_mode": "buy_equals_pay",
    //       "taxes": {
    //         "amount": null,
    //         "currency_id": null
    //       },
    //       "order_request": {
    //         "change": null,
    //         "return": null
    //       },
    //       "expiration_date": "2019-06-19T03:51:07.000-04:00",
    //       "feedback": {
    //         "sale": null,
    //         "purchase": null
    //       },
    //       "shipping": {
    //         "id": 27968238880
    //       },
    //       "date_closed": "2019-05-22T03:51:07.000-04:00",
    //       "id": 2032217210,
    //       "manufacturing_ending_date": null,
    //       "hidden_for_seller": false,
    //       "order_items": [
    //         {
    //           "item": {
    //             "seller_custom_field": null,
    //             "condition": "new",
    //             "category_id": "MLB33383",
    //             "variation_id": null,
    //             "variation_attributes": [
    //             ],
    //             "seller_sku": null,
    //             "warranty": "Garantia de 1 ano fabricante",
    //             "id": "MLB1054990648",
    //             "title": "Kit Com 03 Adesivo Spray 3m 75 Cola Silk Sublimação 300g"
    //           },
    //           "quantity": 1,
    //           "differential_pricing_id": null,
    //           "sale_fee": 14.29,
    //           "listing_type_id": "gold_special",
    //           "base_currency_id": null,
    //           "unit_price": 129.95,
    //           "full_unit_price": 129.95,
    //           "base_exchange_rate": null,
    //           "currency_id": "BRL",
    //           "manufacturing_days": null
    //         }
    //       ],
    //       "date_last_updated": "2020-02-14T02:55:49.811Z",
    //       "last_updated": "2019-05-28T15:16:04.000-04:00",
    //       "comments": null,
    //       "pack_id": null,
    //       "coupon": {
    //         "amount": 0,
    //         "id": null
    //       },
    //       "shipping_cost": 0,
    //       "date_created": "2019-05-22T03:51:05.000-04:00",
    //       "application_id": "7092",
    //       "pickup_id": null,
    //       "status_detail": null,
    //       "tags": [
    //         "delivered",
    //         "paid"
    //       ],
    //       "buyer": {
    //         "billing_info": {
    //           "doc_number": "02183212950",
    //           "doc_type": "CPF"
    //         },
    //         "phone": {
    //           "number": "99962663",
    //           "extension": "",
    //           "area_code": "41",
    //           "verified": false
    //         },
    //         "alternative_phone": {
    //           "number": "30576339",
    //           "extension": "",
    //           "area_code": "41"
    //         },
    //         "nickname": "S.VICTORHUGO",
    //         "last_name": "Schemberger",
    //         "id": 89660613,
    //         "first_name": "Victor Hugo",
    //         "email": "vschemb.y14cdz+2-ogiydgmrsge3tenbz@mail.mercadolivre.com"
    //       },
    //       "total_amount": 129.95,
    //       "paid_amount": 129.95,
    //       "mediations": [
    //       ],
    //       "currency_id": "BRL",
    //       "status": "paid"
    //     }
    //   ],
    //   "sort": {
    //     "id": "date_asc",
    //     "name": "Date ascending"
    //   },
    //   "available_sorts": [
    //     {
    //       "id": "date_desc",
    //       "name": "Date descending"
    //     }
    //   ],
    //   "filters": [
    //   ],
    //   "paging": {
    //     "total": 1,
    //     "offset": 0,
    //     "limit": 50
    //   },
    //   "display": "complete"
    // }

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

    CkDtObjW date_closed;
    CkDtObjW date_last_updated;
    CkDtObjW date_created;
    CkDtObjW date_approved;
    CkDtObjW date_last_modified;
    const wchar_t *sellerPhoneNumber = 0;
    const wchar_t *sellerPhoneExtension = 0;
    const wchar_t *sellerPhoneArea_code = 0;
    bool sellerPhoneVerified;
    const wchar_t *sellerAlternative_phoneNumber = 0;
    const wchar_t *sellerAlternative_phoneExtension = 0;
    const wchar_t *sellerAlternative_phoneArea_code = 0;
    const wchar_t *sellerNickname = 0;
    const wchar_t *sellerLast_name = 0;
    int sellerId;
    const wchar_t *sellerFirst_name = 0;
    const wchar_t *sellerEmail = 0;
    bool fulfilled;
    const wchar_t *buying_mode = 0;
    const wchar_t *taxesAmount = 0;
    const wchar_t *taxesCurrency_id = 0;
    const wchar_t *order_requestChange = 0;
    const wchar_t *order_requestReturn = 0;
    const wchar_t *expiration_date = 0;
    const wchar_t *feedbackSale = 0;
    const wchar_t *feedbackPurchase = 0;
    int shippingId;
    int id;
    const wchar_t *manufacturing_ending_date = 0;
    bool hidden_for_seller;
    const wchar_t *last_updated = 0;
    const wchar_t *comments = 0;
    const wchar_t *pack_id = 0;
    int couponAmount;
    const wchar_t *couponId = 0;
    int shipping_cost;
    const wchar_t *application_id = 0;
    const wchar_t *pickup_id = 0;
    const wchar_t *status_detail = 0;
    const wchar_t *buyerBilling_infoDoc_number = 0;
    const wchar_t *buyerBilling_infoDoc_type = 0;
    const wchar_t *buyerPhoneNumber = 0;
    const wchar_t *buyerPhoneExtension = 0;
    const wchar_t *buyerPhoneArea_code = 0;
    bool buyerPhoneVerified;
    const wchar_t *buyerAlternative_phoneNumber = 0;
    const wchar_t *buyerAlternative_phoneExtension = 0;
    const wchar_t *buyerAlternative_phoneArea_code = 0;
    const wchar_t *buyerNickname = 0;
    const wchar_t *buyerLast_name = 0;
    int buyerId;
    const wchar_t *buyerFirst_name = 0;
    const wchar_t *buyerEmail = 0;
    const wchar_t *total_amount = 0;
    const wchar_t *paid_amount = 0;
    const wchar_t *currency_id = 0;
    const wchar_t *status = 0;
    int j;
    int count_j;
    const wchar_t *reason = 0;
    const wchar_t *status_code = 0;
    const wchar_t *total_paid_amount = 0;
    const wchar_t *operation_type = 0;
    const wchar_t *transaction_amount = 0;
    int collectorId;
    const wchar_t *coupon_id = 0;
    int installments;
    const wchar_t *authorization_code = 0;
    int taxes_amount;
    int coupon_amount;
    const wchar_t *installment_amount = 0;
    const wchar_t *activation_uri = 0;
    int overpaid_amount;
    int card_id;
    const wchar_t *issuer_id = 0;
    const wchar_t *payment_method_id = 0;
    const wchar_t *payment_type = 0;
    const wchar_t *deferred_period = 0;
    const wchar_t *atm_transfer_referenceTransaction_id = 0;
    const wchar_t *atm_transfer_referenceCompany_id = 0;
    const wchar_t *site_id = 0;
    int payer_id;
    const wchar_t *marketplace_fee = 0;
    int order_id;
    const wchar_t *transaction_order_id = 0;
    int k;
    int count_k;
    const wchar_t *strVal = 0;
    const wchar_t *itemSeller_custom_field = 0;
    const wchar_t *itemCondition = 0;
    const wchar_t *itemCategory_id = 0;
    const wchar_t *itemVariation_id = 0;
    const wchar_t *itemSeller_sku = 0;
    const wchar_t *itemWarranty = 0;
    const wchar_t *itemId = 0;
    const wchar_t *itemTitle = 0;
    int quantity;
    const wchar_t *differential_pricing_id = 0;
    const wchar_t *sale_fee = 0;
    const wchar_t *listing_type_id = 0;
    const wchar_t *base_currency_id = 0;
    const wchar_t *unit_price = 0;
    const wchar_t *full_unit_price = 0;
    const wchar_t *base_exchange_rate = 0;
    const wchar_t *manufacturing_days = 0;
    const wchar_t *id_str = 0;
    const wchar_t *name = 0;

    const wchar_t *query = jResp.stringOf(L"query");
    const wchar_t *sortId = jResp.stringOf(L"sort.id");
    const wchar_t *sortName = jResp.stringOf(L"sort.name");
    int pagingTotal = jResp.IntOf(L"paging.total");
    int pagingOffset = jResp.IntOf(L"paging.offset");
    int pagingLimit = jResp.IntOf(L"paging.limit");
    const wchar_t *display = jResp.stringOf(L"display");
    int i = 0;
    int count_i = jResp.SizeOfArray(L"results");
    while (i < count_i) {
        jResp.put_I(i);
        sellerPhoneNumber = jResp.stringOf(L"results[i].seller.phone.number");
        sellerPhoneExtension = jResp.stringOf(L"results[i].seller.phone.extension");
        sellerPhoneArea_code = jResp.stringOf(L"results[i].seller.phone.area_code");
        sellerPhoneVerified = jResp.BoolOf(L"results[i].seller.phone.verified");
        sellerAlternative_phoneNumber = jResp.stringOf(L"results[i].seller.alternative_phone.number");
        sellerAlternative_phoneExtension = jResp.stringOf(L"results[i].seller.alternative_phone.extension");
        sellerAlternative_phoneArea_code = jResp.stringOf(L"results[i].seller.alternative_phone.area_code");
        sellerNickname = jResp.stringOf(L"results[i].seller.nickname");
        sellerLast_name = jResp.stringOf(L"results[i].seller.last_name");
        sellerId = jResp.IntOf(L"results[i].seller.id");
        sellerFirst_name = jResp.stringOf(L"results[i].seller.first_name");
        sellerEmail = jResp.stringOf(L"results[i].seller.email");
        fulfilled = jResp.BoolOf(L"results[i].fulfilled");
        buying_mode = jResp.stringOf(L"results[i].buying_mode");
        taxesAmount = jResp.stringOf(L"results[i].taxes.amount");
        taxesCurrency_id = jResp.stringOf(L"results[i].taxes.currency_id");
        order_requestChange = jResp.stringOf(L"results[i].order_request.change");
        order_requestReturn = jResp.stringOf(L"results[i].order_request.return");
        expiration_date = jResp.stringOf(L"results[i].expiration_date");
        feedbackSale = jResp.stringOf(L"results[i].feedback.sale");
        feedbackPurchase = jResp.stringOf(L"results[i].feedback.purchase");
        shippingId = jResp.IntOf(L"results[i].shipping.id");
        jResp.DtOf(L"results[i].date_closed",false,date_closed);
        id = jResp.IntOf(L"results[i].id");
        manufacturing_ending_date = jResp.stringOf(L"results[i].manufacturing_ending_date");
        hidden_for_seller = jResp.BoolOf(L"results[i].hidden_for_seller");
        jResp.DtOf(L"results[i].date_last_updated",false,date_last_updated);
        last_updated = jResp.stringOf(L"results[i].last_updated");
        comments = jResp.stringOf(L"results[i].comments");
        pack_id = jResp.stringOf(L"results[i].pack_id");
        couponAmount = jResp.IntOf(L"results[i].coupon.amount");
        couponId = jResp.stringOf(L"results[i].coupon.id");
        shipping_cost = jResp.IntOf(L"results[i].shipping_cost");
        jResp.DtOf(L"results[i].date_created",false,date_created);
        application_id = jResp.stringOf(L"results[i].application_id");
        pickup_id = jResp.stringOf(L"results[i].pickup_id");
        status_detail = jResp.stringOf(L"results[i].status_detail");
        buyerBilling_infoDoc_number = jResp.stringOf(L"results[i].buyer.billing_info.doc_number");
        buyerBilling_infoDoc_type = jResp.stringOf(L"results[i].buyer.billing_info.doc_type");
        buyerPhoneNumber = jResp.stringOf(L"results[i].buyer.phone.number");
        buyerPhoneExtension = jResp.stringOf(L"results[i].buyer.phone.extension");
        buyerPhoneArea_code = jResp.stringOf(L"results[i].buyer.phone.area_code");
        buyerPhoneVerified = jResp.BoolOf(L"results[i].buyer.phone.verified");
        buyerAlternative_phoneNumber = jResp.stringOf(L"results[i].buyer.alternative_phone.number");
        buyerAlternative_phoneExtension = jResp.stringOf(L"results[i].buyer.alternative_phone.extension");
        buyerAlternative_phoneArea_code = jResp.stringOf(L"results[i].buyer.alternative_phone.area_code");
        buyerNickname = jResp.stringOf(L"results[i].buyer.nickname");
        buyerLast_name = jResp.stringOf(L"results[i].buyer.last_name");
        buyerId = jResp.IntOf(L"results[i].buyer.id");
        buyerFirst_name = jResp.stringOf(L"results[i].buyer.first_name");
        buyerEmail = jResp.stringOf(L"results[i].buyer.email");
        total_amount = jResp.stringOf(L"results[i].total_amount");
        paid_amount = jResp.stringOf(L"results[i].paid_amount");
        currency_id = jResp.stringOf(L"results[i].currency_id");
        status = jResp.stringOf(L"results[i].status");
        j = 0;
        count_j = jResp.SizeOfArray(L"results[i].payments");
        while (j < count_j) {
            jResp.put_J(j);
            reason = jResp.stringOf(L"results[i].payments[j].reason");
            status_code = jResp.stringOf(L"results[i].payments[j].status_code");
            total_paid_amount = jResp.stringOf(L"results[i].payments[j].total_paid_amount");
            operation_type = jResp.stringOf(L"results[i].payments[j].operation_type");
            transaction_amount = jResp.stringOf(L"results[i].payments[j].transaction_amount");
            jResp.DtOf(L"results[i].payments[j].date_approved",false,date_approved);
            collectorId = jResp.IntOf(L"results[i].payments[j].collector.id");
            coupon_id = jResp.stringOf(L"results[i].payments[j].coupon_id");
            installments = jResp.IntOf(L"results[i].payments[j].installments");
            authorization_code = jResp.stringOf(L"results[i].payments[j].authorization_code");
            taxes_amount = jResp.IntOf(L"results[i].payments[j].taxes_amount");
            id = jResp.IntOf(L"results[i].payments[j].id");
            jResp.DtOf(L"results[i].payments[j].date_last_modified",false,date_last_modified);
            coupon_amount = jResp.IntOf(L"results[i].payments[j].coupon_amount");
            shipping_cost = jResp.IntOf(L"results[i].payments[j].shipping_cost");
            installment_amount = jResp.stringOf(L"results[i].payments[j].installment_amount");
            jResp.DtOf(L"results[i].payments[j].date_created",false,date_created);
            activation_uri = jResp.stringOf(L"results[i].payments[j].activation_uri");
            overpaid_amount = jResp.IntOf(L"results[i].payments[j].overpaid_amount");
            card_id = jResp.IntOf(L"results[i].payments[j].card_id");
            status_detail = jResp.stringOf(L"results[i].payments[j].status_detail");
            issuer_id = jResp.stringOf(L"results[i].payments[j].issuer_id");
            payment_method_id = jResp.stringOf(L"results[i].payments[j].payment_method_id");
            payment_type = jResp.stringOf(L"results[i].payments[j].payment_type");
            deferred_period = jResp.stringOf(L"results[i].payments[j].deferred_period");
            atm_transfer_referenceTransaction_id = jResp.stringOf(L"results[i].payments[j].atm_transfer_reference.transaction_id");
            atm_transfer_referenceCompany_id = jResp.stringOf(L"results[i].payments[j].atm_transfer_reference.company_id");
            site_id = jResp.stringOf(L"results[i].payments[j].site_id");
            payer_id = jResp.IntOf(L"results[i].payments[j].payer_id");
            marketplace_fee = jResp.stringOf(L"results[i].payments[j].marketplace_fee");
            order_id = jResp.IntOf(L"results[i].payments[j].order_id");
            currency_id = jResp.stringOf(L"results[i].payments[j].currency_id");
            status = jResp.stringOf(L"results[i].payments[j].status");
            transaction_order_id = jResp.stringOf(L"results[i].payments[j].transaction_order_id");
            k = 0;
            count_k = jResp.SizeOfArray(L"results[i].payments[j].available_actions");
            while (k < count_k) {
                jResp.put_K(k);
                strVal = jResp.stringOf(L"results[i].payments[j].available_actions[k]");
                k = k + 1;
            }

            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray(L"results[i].order_items");
        while (j < count_j) {
            jResp.put_J(j);
            itemSeller_custom_field = jResp.stringOf(L"results[i].order_items[j].item.seller_custom_field");
            itemCondition = jResp.stringOf(L"results[i].order_items[j].item.condition");
            itemCategory_id = jResp.stringOf(L"results[i].order_items[j].item.category_id");
            itemVariation_id = jResp.stringOf(L"results[i].order_items[j].item.variation_id");
            itemSeller_sku = jResp.stringOf(L"results[i].order_items[j].item.seller_sku");
            itemWarranty = jResp.stringOf(L"results[i].order_items[j].item.warranty");
            itemId = jResp.stringOf(L"results[i].order_items[j].item.id");
            itemTitle = jResp.stringOf(L"results[i].order_items[j].item.title");
            quantity = jResp.IntOf(L"results[i].order_items[j].quantity");
            differential_pricing_id = jResp.stringOf(L"results[i].order_items[j].differential_pricing_id");
            sale_fee = jResp.stringOf(L"results[i].order_items[j].sale_fee");
            listing_type_id = jResp.stringOf(L"results[i].order_items[j].listing_type_id");
            base_currency_id = jResp.stringOf(L"results[i].order_items[j].base_currency_id");
            unit_price = jResp.stringOf(L"results[i].order_items[j].unit_price");
            full_unit_price = jResp.stringOf(L"results[i].order_items[j].full_unit_price");
            base_exchange_rate = jResp.stringOf(L"results[i].order_items[j].base_exchange_rate");
            currency_id = jResp.stringOf(L"results[i].order_items[j].currency_id");
            manufacturing_days = jResp.stringOf(L"results[i].order_items[j].manufacturing_days");
            k = 0;
            count_k = jResp.SizeOfArray(L"results[i].order_items[j].item.variation_attributes");
            while (k < count_k) {
                jResp.put_K(k);
                k = k + 1;
            }

            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray(L"results[i].tags");
        while (j < count_j) {
            jResp.put_J(j);
            strVal = jResp.stringOf(L"results[i].tags[j]");
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray(L"results[i].mediations");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
        }

        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"available_sorts");
    while (i < count_i) {
        jResp.put_I(i);
        id_str = jResp.stringOf(L"available_sorts[i].id");
        name = jResp.stringOf(L"available_sorts[i].name");
        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"filters");
    while (i < count_i) {
        jResp.put_I(i);
        i = i + 1;
    }
    }