Chilkat Online Tools

unicodeC / ShipEngine Walkthrough / List your labels

Back to Collection Items

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

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW queryParams;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *label_id;
    const wchar_t *status;
    const wchar_t *shipment_id;
    const wchar_t *ship_date;
    const wchar_t *created_at;
    const wchar_t *v_Currency;
    const wchar_t *Amount;
    const wchar_t *insurance_costCurrency;
    int insurance_costAmount;
    const wchar_t *tracking_number;
    BOOL is_return_label;
    const wchar_t *rma_number;
    BOOL is_international;
    const wchar_t *batch_id;
    const wchar_t *carrier_id;
    const wchar_t *service_code;
    const wchar_t *package_code;
    BOOL voided;
    const wchar_t *voided_at;
    const wchar_t *label_format;
    const wchar_t *label_layout;
    BOOL trackable;
    const wchar_t *carrier_code;
    const wchar_t *tracking_status;
    const wchar_t *v_Pdf;
    const wchar_t *Png;
    const wchar_t *Zpl;
    const wchar_t *label_downloadHref;
    const wchar_t *form_download;
    const wchar_t *insurance_claim;
    int j;
    int count_j;
    int Value;
    const wchar_t *Unit;
    const wchar_t *dimensionsUnit;
    int Length;
    int Width;
    int Height;
    const wchar_t *insured_valueCurrency;
    int insured_valueAmount;
    const wchar_t *Reference1;
    const wchar_t *Reference2;
    const wchar_t *Reference3;
    const wchar_t *external_package_id;
    int total;
    int page;
    int pages;
    const wchar_t *Href;
    const wchar_t *LastHref;
    int i;
    int count_i;

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

    http = CkHttpW_Create();

    queryParams = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateInt(queryParams,L"page",1);
    CkJsonObjectW_UpdateInt(queryParams,L"page_size",10);
    CkJsonObjectW_UpdateString(queryParams,L"sort_by",L"created_at");
    CkJsonObjectW_UpdateString(queryParams,L"sort_dir",L"desc");

    CkHttpW_SetRequestHeader(http,L"API-Key",L"{{API_KEY}}");

    resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://api.shipengine.com/v1/labels",queryParams);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(queryParams);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

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

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(queryParams);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(resp);

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

    // {
    //   "labels": [
    //     {
    //       "label_id": "se-1376213",
    //       "status": "voided",
    //       "shipment_id": "se-4140409",
    //       "ship_date": "2019-09-17T00:00:00Z",
    //       "created_at": "2019-09-17T21:24:38.293Z",
    //       "shipment_cost": {
    //         "currency": "usd",
    //         "amount": 98.14
    //       },
    //       "insurance_cost": {
    //         "currency": "usd",
    //         "amount": 0
    //       },
    //       "tracking_number": "9405511899564298842779",
    //       "is_return_label": false,
    //       "rma_number": null,
    //       "is_international": false,
    //       "batch_id": "",
    //       "carrier_id": "se-121861",
    //       "service_code": "usps_priority_mail",
    //       "package_code": "package",
    //       "voided": true,
    //       "voided_at": "2019-09-17T21:28:48.89Z",
    //       "label_format": "pdf",
    //       "label_layout": "4x6",
    //       "trackable": false,
    //       "carrier_code": "stamps_com",
    //       "tracking_status": "in_transit",
    //       "label_download": {
    //         "pdf": "https://api.shipengine.com/v1/downloads/10/y7wnsDz5f02H4IlaqNO0aw/label-1376213.pdf",
    //         "png": "https://api.shipengine.com/v1/downloads/10/y7wnsDz5f02H4IlaqNO0aw/label-1376213.png",
    //         "zpl": "https://api.shipengine.com/v1/downloads/10/y7wnsDz5f02H4IlaqNO0aw/label-1376213.zpl",
    //         "href": "https://api.shipengine.com/v1/downloads/10/y7wnsDz5f02H4IlaqNO0aw/label-1376213.pdf"
    //       },
    //       "form_download": null,
    //       "insurance_claim": null,
    //       "packages": [
    //         {
    //           "package_code": "package",
    //           "weight": {
    //             "value": 17,
    //             "unit": "pound"
    //           },
    //           "dimensions": {
    //             "unit": "inch",
    //             "length": 36,
    //             "width": 12,
    //             "height": 24
    //           },
    //           "insured_value": {
    //             "currency": "usd",
    //             "amount": 0
    //           },
    //           "tracking_number": "9405511899564298842779",
    //           "label_messages": {
    //             "reference1": null,
    //             "reference2": null,
    //             "reference3": null
    //           },
    //           "external_package_id": null
    //         }
    //       ]
    //     }
    //   ],
    //   "total": 1,
    //   "page": 1,
    //   "pages": 1,
    //   "links": {
    //     "first": {
    //       "href": "https://api.shipengine.com/v1/labels?label_status=voided&carrier_id=se-121861&service_code=usps_priority_mail&tracking_number=9405511899564298842779&sort_by=created_at&sort_dir=desc&page=1&page_size=10"
    //     },
    //     "last": {
    //       "href": "https://api.shipengine.com/v1/labels?label_status=voided&carrier_id=se-121861&service_code=usps_priority_mail&tracking_number=9405511899564298842779&sort_by=created_at&sort_dir=desc&page=1&page_size=10"
    //     },
    //     "prev": {},
    //     "next": {}
    //   }
    // }

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

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    total = CkJsonObjectW_IntOf(jResp,L"total");
    page = CkJsonObjectW_IntOf(jResp,L"page");
    pages = CkJsonObjectW_IntOf(jResp,L"pages");
    Href = CkJsonObjectW_stringOf(jResp,L"links.first.href");
    LastHref = CkJsonObjectW_stringOf(jResp,L"links.last.href");
    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"labels");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        label_id = CkJsonObjectW_stringOf(jResp,L"labels[i].label_id");
        status = CkJsonObjectW_stringOf(jResp,L"labels[i].status");
        shipment_id = CkJsonObjectW_stringOf(jResp,L"labels[i].shipment_id");
        ship_date = CkJsonObjectW_stringOf(jResp,L"labels[i].ship_date");
        created_at = CkJsonObjectW_stringOf(jResp,L"labels[i].created_at");
        v_Currency = CkJsonObjectW_stringOf(jResp,L"labels[i].shipment_cost.currency");
        Amount = CkJsonObjectW_stringOf(jResp,L"labels[i].shipment_cost.amount");
        insurance_costCurrency = CkJsonObjectW_stringOf(jResp,L"labels[i].insurance_cost.currency");
        insurance_costAmount = CkJsonObjectW_IntOf(jResp,L"labels[i].insurance_cost.amount");
        tracking_number = CkJsonObjectW_stringOf(jResp,L"labels[i].tracking_number");
        is_return_label = CkJsonObjectW_BoolOf(jResp,L"labels[i].is_return_label");
        rma_number = CkJsonObjectW_stringOf(jResp,L"labels[i].rma_number");
        is_international = CkJsonObjectW_BoolOf(jResp,L"labels[i].is_international");
        batch_id = CkJsonObjectW_stringOf(jResp,L"labels[i].batch_id");
        carrier_id = CkJsonObjectW_stringOf(jResp,L"labels[i].carrier_id");
        service_code = CkJsonObjectW_stringOf(jResp,L"labels[i].service_code");
        package_code = CkJsonObjectW_stringOf(jResp,L"labels[i].package_code");
        voided = CkJsonObjectW_BoolOf(jResp,L"labels[i].voided");
        voided_at = CkJsonObjectW_stringOf(jResp,L"labels[i].voided_at");
        label_format = CkJsonObjectW_stringOf(jResp,L"labels[i].label_format");
        label_layout = CkJsonObjectW_stringOf(jResp,L"labels[i].label_layout");
        trackable = CkJsonObjectW_BoolOf(jResp,L"labels[i].trackable");
        carrier_code = CkJsonObjectW_stringOf(jResp,L"labels[i].carrier_code");
        tracking_status = CkJsonObjectW_stringOf(jResp,L"labels[i].tracking_status");
        v_Pdf = CkJsonObjectW_stringOf(jResp,L"labels[i].label_download.pdf");
        Png = CkJsonObjectW_stringOf(jResp,L"labels[i].label_download.png");
        Zpl = CkJsonObjectW_stringOf(jResp,L"labels[i].label_download.zpl");
        label_downloadHref = CkJsonObjectW_stringOf(jResp,L"labels[i].label_download.href");
        form_download = CkJsonObjectW_stringOf(jResp,L"labels[i].form_download");
        insurance_claim = CkJsonObjectW_stringOf(jResp,L"labels[i].insurance_claim");
        j = 0;
        count_j = CkJsonObjectW_SizeOfArray(jResp,L"labels[i].packages");
        while (j < count_j) {
            CkJsonObjectW_putJ(jResp,j);
            package_code = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].package_code");
            Value = CkJsonObjectW_IntOf(jResp,L"labels[i].packages[j].weight.value");
            Unit = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].weight.unit");
            dimensionsUnit = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].dimensions.unit");
            Length = CkJsonObjectW_IntOf(jResp,L"labels[i].packages[j].dimensions.length");
            Width = CkJsonObjectW_IntOf(jResp,L"labels[i].packages[j].dimensions.width");
            Height = CkJsonObjectW_IntOf(jResp,L"labels[i].packages[j].dimensions.height");
            insured_valueCurrency = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].insured_value.currency");
            insured_valueAmount = CkJsonObjectW_IntOf(jResp,L"labels[i].packages[j].insured_value.amount");
            tracking_number = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].tracking_number");
            Reference1 = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].label_messages.reference1");
            Reference2 = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].label_messages.reference2");
            Reference3 = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].label_messages.reference3");
            external_package_id = CkJsonObjectW_stringOf(jResp,L"labels[i].packages[j].external_package_id");
            j = j + 1;
        }

        i = i + 1;
    }



    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(queryParams);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

Curl Command

curl -G -d "page=1"
	-d "page_size=10"
	-d "sort_by=created_at"
	-d "sort_dir=desc"
	-H "API-Key: {{API_KEY}}"
https://api.shipengine.com/v1/labels

Postman Collection Item JSON

{
  "name": "List your labels",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "let response = pm.response.json();",
          "",
          "if (response.labels.length > 0) {",
          "    const template = `",
          "        <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css\">",
          "        <link rel=\"stylesheet\" href=\"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css\">",
          "        ",
          "        <h1>Labels</h1>",
          "        <p class=\"lead\">",
          "            <span class=\"badge badge-success\">{{total}} labels</span> matched your search criteria <small>({{pages}} pages of results)</small>",
          "        </p>",
          "        ",
          "        <table class=\"table table-hover\">",
          "            <thead class=\"thead-dark\">",
          "                <tr>",
          "                    <th>Label ID</th>",
          "                    <th>Carrier</th>",
          "                    <th>Service</th>",
          "                    <th>Cost</th>",
          "                    <th>Status</th>",
          "                    <th>Tracking Number</th>",
          "                </tr>",
          "            </thead>",
          "            <tbody>",
          "                {{#each labels}}",
          "                    <tr>",
          "                        <td>{{label_id}}</td>",
          "                        <td>",
          "                            <img alt=\"{{carrier_id}}\" style=\"height: 30px\"",
          "                            src=\"https://www.shipengine.com/docs/img/logos/carriers/{{carrier_code}}.svg\">",
          "                        </td>",
          "                        <td>",
          "                            <samp>{{service_code}}</samp>",
          "                        </td>",
          "                        <td>{{shipment_cost.amount}} {{shipment_cost.currency}}</td>",
          "                        <td>{{status}}</td>",
          "                        <td>{{tracking_number}}</td>",
          "                    </tr>",
          "                {{/each}}",
          "            </tbody>",
          "        </table>",
          "    `;",
          "    ",
          "    pm.visualizer.set(template, response);",
          "}"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://api.shipengine.com/v1/labels?page=1&page_size=10&sort_by=created_at&sort_dir=desc",
      "protocol": "https",
      "host": [
        "api",
        "shipengine",
        "com"
      ],
      "path": [
        "v1",
        "labels"
      ],
      "query": [
        {
          "key": "label_status",
          "value": "voided",
          "disabled": true
        },
        {
          "key": "carrier_id",
          "value": "{{stamps_com}}",
          "disabled": true
        },
        {
          "key": "service_code",
          "value": "usps_priority_mail",
          "disabled": true
        },
        {
          "key": "tracking_number",
          "value": "{{tracking_number}}",
          "disabled": true
        },
        {
          "key": "page",
          "value": "1"
        },
        {
          "key": "page_size",
          "value": "10"
        },
        {
          "key": "sort_by",
          "value": "created_at"
        },
        {
          "key": "sort_dir",
          "value": "desc"
        }
      ]
    },
    "description": "This request shows how to list labels that match certain criteria, such as the carrier, service, date, warehouse, status, etc."
  },
  "response": [
    {
      "name": "List your labels",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "https://api.shipengine.com/v1/labels?label_status=voided&carrier_id={{stamps_com}}&service_code=usps_priority_mail&tracking_number={{tracking_number}}&page=1&page_size=10&sort_by=created_at&sort_dir=desc",
          "protocol": "https",
          "host": [
            "api",
            "shipengine",
            "com"
          ],
          "path": [
            "v1",
            "labels"
          ],
          "query": [
            {
              "key": "label_status",
              "value": "voided"
            },
            {
              "key": "carrier_id",
              "value": "{{stamps_com}}"
            },
            {
              "key": "service_code",
              "value": "usps_priority_mail"
            },
            {
              "key": "tracking_number",
              "value": "{{tracking_number}}"
            },
            {
              "key": "page",
              "value": "1"
            },
            {
              "key": "page_size",
              "value": "10"
            },
            {
              "key": "sort_by",
              "value": "created_at"
            },
            {
              "key": "sort_dir",
              "value": "desc"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Tue, 17 Sep 2019 21:33:29 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json; charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "2699"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "https://www.shipengine.com"
        },
        {
          "key": "Vary",
          "value": "Origin"
        },
        {
          "key": "x-shipengine-requestid",
          "value": "b3354fc0-d6c2-4711-861f-03730ee4ad2e"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"labels\": [\n        {\n            \"label_id\": \"se-1376213\",\n            \"status\": \"voided\",\n            \"shipment_id\": \"se-4140409\",\n            \"ship_date\": \"2019-09-17T00:00:00Z\",\n            \"created_at\": \"2019-09-17T21:24:38.293Z\",\n            \"shipment_cost\": {\n                \"currency\": \"usd\",\n                \"amount\": 98.14\n            },\n            \"insurance_cost\": {\n                \"currency\": \"usd\",\n                \"amount\": 0\n            },\n            \"tracking_number\": \"9405511899564298842779\",\n            \"is_return_label\": false,\n            \"rma_number\": null,\n            \"is_international\": false,\n            \"batch_id\": \"\",\n            \"carrier_id\": \"se-121861\",\n            \"service_code\": \"usps_priority_mail\",\n            \"package_code\": \"package\",\n            \"voided\": true,\n            \"voided_at\": \"2019-09-17T21:28:48.89Z\",\n            \"label_format\": \"pdf\",\n            \"label_layout\": \"4x6\",\n            \"trackable\": false,\n            \"carrier_code\": \"stamps_com\",\n            \"tracking_status\": \"in_transit\",\n            \"label_download\": {\n                \"pdf\": \"https://api.shipengine.com/v1/downloads/10/y7wnsDz5f02H4IlaqNO0aw/label-1376213.pdf\",\n                \"png\": \"https://api.shipengine.com/v1/downloads/10/y7wnsDz5f02H4IlaqNO0aw/label-1376213.png\",\n                \"zpl\": \"https://api.shipengine.com/v1/downloads/10/y7wnsDz5f02H4IlaqNO0aw/label-1376213.zpl\",\n                \"href\": \"https://api.shipengine.com/v1/downloads/10/y7wnsDz5f02H4IlaqNO0aw/label-1376213.pdf\"\n            },\n            \"form_download\": null,\n            \"insurance_claim\": null,\n            \"packages\": [\n                {\n                    \"package_code\": \"package\",\n                    \"weight\": {\n                        \"value\": 17,\n                        \"unit\": \"pound\"\n                    },\n                    \"dimensions\": {\n                        \"unit\": \"inch\",\n                        \"length\": 36,\n                        \"width\": 12,\n                        \"height\": 24\n                    },\n                    \"insured_value\": {\n                        \"currency\": \"usd\",\n                        \"amount\": 0\n                    },\n                    \"tracking_number\": \"9405511899564298842779\",\n                    \"label_messages\": {\n                        \"reference1\": null,\n                        \"reference2\": null,\n                        \"reference3\": null\n                    },\n                    \"external_package_id\": null\n                }\n            ]\n        }\n    ],\n    \"total\": 1,\n    \"page\": 1,\n    \"pages\": 1,\n    \"links\": {\n        \"first\": {\n            \"href\": \"https://api.shipengine.com/v1/labels?label_status=voided&carrier_id=se-121861&service_code=usps_priority_mail&tracking_number=9405511899564298842779&sort_by=created_at&sort_dir=desc&page=1&page_size=10\"\n        },\n        \"last\": {\n            \"href\": \"https://api.shipengine.com/v1/labels?label_status=voided&carrier_id=se-121861&service_code=usps_priority_mail&tracking_number=9405511899564298842779&sort_by=created_at&sort_dir=desc&page=1&page_size=10\"\n        },\n        \"prev\": {},\n        \"next\": {}\n    }\n}"
    }
  ]
}