Chilkat Online Tools

unicodeCpp / ShipEngine Walkthrough / Subscribe to tracking updates for a package

Back to Collection Items

#include <CkHttpW.h>
#include <CkHttpResponseW.h>

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

    CkHttpW http;
    bool success;

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

    CkHttpResponseW *resp = http.QuickRequest(L"POST",L"https://api.shipengine.com/v1/tracking/start?carrier_code=stamps_com&tracking_number=1Z6Y21Y60300230257");
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -X POST
	-H "API-Key: {{API_KEY}}"
https://api.shipengine.com/v1/tracking/start?carrier_code=stamps_com&tracking_number=1Z6Y21Y60300230257

Postman Collection Item JSON

{
  "name": "Subscribe to tracking updates for a package",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
    ],
    "url": {
      "raw": "https://api.shipengine.com/v1/tracking/start?carrier_code=stamps_com&tracking_number={{tracking_number}}",
      "protocol": "https",
      "host": [
        "api",
        "shipengine",
        "com"
      ],
      "path": [
        "v1",
        "tracking",
        "start"
      ],
      "query": [
        {
          "key": "carrier_code",
          "value": "stamps_com"
        },
        {
          "key": "tracking_number",
          "value": "{{tracking_number}}"
        }
      ]
    },
    "description": "Once you've setup a tracking webhook, you can start subscribing to tracking updates for packages.  Your webhook will be notified whenever any tracking events occur on a subscribed package."
  },
  "response": [
  ]
}