Chilkat Online Tools

C# / ShipEngine Walkthrough / Subscribe to tracking updates for a package

Back to Collection Items

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

Chilkat.Http http = new Chilkat.Http();
bool success;

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

Chilkat.HttpResponse resp = http.QuickRequest("POST","https://api.shipengine.com/v1/tracking/start?carrier_code=stamps_com&tracking_number=1Z6Y21Y60300230257");
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);

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": [
  ]
}