PowerBuilder
PowerBuilder
Shippo Track Individual Shipments
See more Shippo Examples
Demonstrates how to submit an individual tracking request for a single shipment.Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Object_state
string ls_Status
string ls_Object_created
string ls_Object_updated
string ls_Object_id
string ls_Object_owner
integer li_Test
string ls_Rate
string ls_Tracking_number
string ls_Tracking_status
string ls_Eta
string ls_Tracking_url_provider
string ls_Label_url
string ls_Commercial_invoice_url
string ls_Order
string ls_Metadata
string ls_Parcel
integer i
integer li_Count_i
li_Success = 0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Implements the following CURL command:
// curl https://api.goshippo.com/tracks/usps/92701902416755000000000015 \
// -H "Authorization: ShippoToken <API_TOKEN>"
loo_Http.SetRequestHeader("Authorization","ShippoToken <API_TOKEN>")
loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
li_Success = loo_Http.QuickGetSb("https://api.goshippo.com/tracks/usps/92701902416755000000000015",loo_SbResponseBody)
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_SbResponseBody
return
end if
loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")
loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0
Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()
li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Http.LastHeader
Write-Debug "Failed."
destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "object_state": "VALID",
// "status": "SUCCESS",
// "object_created": "2014-11-29T16:31:19.512Z",
// "object_updated": "2014-11-29T16:31:19.512Z",
// "object_id": "5695ae3a5eda41ba9abdbf347fd545f3",
// "object_owner": "test@goshippo.com",
// "test": false,
// "rate": "693ea14a541f44e090291b929c171d5a",
// "tracking_number": "9102969010383081813033",
// "tracking_status": "DELIVERED",
// "eta": "2014-11-24T00:00:00Z",
// "tracking_url_provider": "https:\/\/tools.usps.com\/go\/TrackConfirmAction_input?origTrackNum=9102969010383081813033",
// "label_url": "https:\/\/shippo-delivery-east.s3.amazonaws.com\/5695ae3a5eda41ba9abdbf347fd545f3.pdf?Signature=AyiitLq2g%2F2R9fjboCTVxi5z7JQ%3D&Expires=1534873886&AWSAccessKeyId=AKIAJGLCC5MYLLWIG42A",
// "commercial_invoice_url": null,
// "messages": [
// ],
// "order": "ca760ef0099040b4a2b7feec827bca88",
// "metadata": "",
// "parcel": "e0de043b2f7f4b6d8e6f23ad69641cc1",
// "billing": {
// "payments": [
// ]
// }
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
ls_Object_state = loo_JResp.StringOf("object_state")
ls_Status = loo_JResp.StringOf("status")
ls_Object_created = loo_JResp.StringOf("object_created")
ls_Object_updated = loo_JResp.StringOf("object_updated")
ls_Object_id = loo_JResp.StringOf("object_id")
ls_Object_owner = loo_JResp.StringOf("object_owner")
li_Test = loo_JResp.BoolOf("test")
ls_Rate = loo_JResp.StringOf("rate")
ls_Tracking_number = loo_JResp.StringOf("tracking_number")
ls_Tracking_status = loo_JResp.StringOf("tracking_status")
ls_Eta = loo_JResp.StringOf("eta")
ls_Tracking_url_provider = loo_JResp.StringOf("tracking_url_provider")
ls_Label_url = loo_JResp.StringOf("label_url")
ls_Commercial_invoice_url = loo_JResp.StringOf("commercial_invoice_url")
ls_Order = loo_JResp.StringOf("order")
ls_Metadata = loo_JResp.StringOf("metadata")
ls_Parcel = loo_JResp.StringOf("parcel")
i = 0
li_Count_i = loo_JResp.SizeOfArray("messages")
do while i < li_Count_i
loo_JResp.I = i
i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("billing.payments")
do while i < li_Count_i
loo_JResp.I = i
i = i + 1
loop
destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp