VB6 / 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.
Dim http As New ChilkatHttp
Dim success As Long
http.SetRequestHeader "API-Key","{{API_KEY}}"
Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequest("POST","https://api.shipengine.com/v1/tracking/start?carrier_code=stamps_com&tracking_number=1Z6Y21Y60300230257")
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print resp.StatusCode
Debug.Print 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": [
]
}