Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
integer li_Value
string ls_Unit
string ls_DimensionsUnit
integer li_Length
integer li_Width
integer li_Height
string ls_Insured_valueCurrency
integer li_Insured_valueAmount
string ls_Reference1
string ls_Reference2
string ls_Reference3
string ls_External_package_id
string ls_Label_id
string ls_Status
string ls_Shipment_id
string ls_Ship_date
string ls_Created_at
string ls_V_Currency
string ls_Amount
string ls_Insurance_costCurrency
integer li_Insurance_costAmount
string ls_Tracking_number
integer li_Is_return_label
string ls_Rma_number
integer li_Is_international
string ls_Batch_id
string ls_Carrier_id
string ls_Service_code
string ls_Package_code
integer li_Voided
string ls_Voided_at
string ls_Label_format
string ls_Label_layout
integer li_Trackable
string ls_Carrier_code
string ls_Tracking_status
string ls_V_Pdf
string ls_Png
string ls_Zpl
string ls_Href
string ls_Form_download
string ls_Insurance_claim
integer i
integer li_Count_i
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
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
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "is_return_label": true,
// "rma_number": "123456789",
// "shipment": {
// "service_code": "usps_priority_mail",
// "ship_from": {
// "name": "Amanda Miller",
// "address_line1": "525 S Winchester Blvd",
// "city_locality": "San Jose",
// "state_province": "CA",
// "postal_code": "95128",
// "country_code": "US"
// },
// "ship_to": {
// "company_name": "Example Corp.",
// "address_line1": "4009 Marathon Blvd",
// "city_locality": "Austin",
// "state_province": "TX",
// "postal_code": "78756",
// "country_code": "US",
// "phone": "512-555-5555"
// },
// "packages": [
// {
// "weight": {
// "value": 17,
// "unit": "pound"
// },
// "dimensions": {
// "length": 36,
// "width": 12,
// "height": 24,
// "unit": "inch"
// }
// }
// ]
// }
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateBool("is_return_label",1)
loo_Json.UpdateString("rma_number","123456789")
loo_Json.UpdateString("shipment.service_code","usps_priority_mail")
loo_Json.UpdateString("shipment.ship_from.name","Amanda Miller")
loo_Json.UpdateString("shipment.ship_from.address_line1","525 S Winchester Blvd")
loo_Json.UpdateString("shipment.ship_from.city_locality","San Jose")
loo_Json.UpdateString("shipment.ship_from.state_province","CA")
loo_Json.UpdateString("shipment.ship_from.postal_code","95128")
loo_Json.UpdateString("shipment.ship_from.country_code","US")
loo_Json.UpdateString("shipment.ship_to.company_name","Example Corp.")
loo_Json.UpdateString("shipment.ship_to.address_line1","4009 Marathon Blvd")
loo_Json.UpdateString("shipment.ship_to.city_locality","Austin")
loo_Json.UpdateString("shipment.ship_to.state_province","TX")
loo_Json.UpdateString("shipment.ship_to.postal_code","78756")
loo_Json.UpdateString("shipment.ship_to.country_code","US")
loo_Json.UpdateString("shipment.ship_to.phone","512-555-5555")
loo_Json.UpdateInt("shipment.packages[0].weight.value",17)
loo_Json.UpdateString("shipment.packages[0].weight.unit","pound")
loo_Json.UpdateInt("shipment.packages[0].dimensions.length",36)
loo_Json.UpdateInt("shipment.packages[0].dimensions.width",12)
loo_Json.UpdateInt("shipment.packages[0].dimensions.height",24)
loo_Json.UpdateString("shipment.packages[0].dimensions.unit","inch")
loo_Http.SetRequestHeader("API-Key","{{API_KEY}}")
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Resp = loo_Http.PostJson3("https://api.shipengine.com/v1/labels","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
return
end if
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
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_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
destroy loo_Resp
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "label_id": "se-1382827",
// "status": "completed",
// "shipment_id": "se-4151872",
// "ship_date": "2019-09-18T00:00:00Z",
// "created_at": "2019-09-18T13:55:37.0247767Z",
// "shipment_cost": {
// "currency": "usd",
// "amount": 98.14
// },
// "insurance_cost": {
// "currency": "usd",
// "amount": 0
// },
// "tracking_number": "9405511899564298878259",
// "is_return_label": true,
// "rma_number": "123456789",
// "is_international": false,
// "batch_id": "",
// "carrier_id": "se-121861",
// "service_code": "usps_priority_mail",
// "package_code": "package",
// "voided": false,
// "voided_at": null,
// "label_format": "pdf",
// "label_layout": "4x6",
// "trackable": true,
// "carrier_code": "stamps_com",
// "tracking_status": "in_transit",
// "label_download": {
// "pdf": "https://api.shipengine.com/v1/downloads/10/XksbpgC37Um_NGiv4Qf_GA/label-1382827.pdf",
// "png": "https://api.shipengine.com/v1/downloads/10/XksbpgC37Um_NGiv4Qf_GA/label-1382827.png",
// "zpl": "https://api.shipengine.com/v1/downloads/10/XksbpgC37Um_NGiv4Qf_GA/label-1382827.zpl",
// "href": "https://api.shipengine.com/v1/downloads/10/XksbpgC37Um_NGiv4Qf_GA/label-1382827.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": "9405511899564298878259",
// "label_messages": {
// "reference1": null,
// "reference2": null,
// "reference3": null
// },
// "external_package_id": null
// }
// ]
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
ls_Label_id = loo_JResp.StringOf("label_id")
ls_Status = loo_JResp.StringOf("status")
ls_Shipment_id = loo_JResp.StringOf("shipment_id")
ls_Ship_date = loo_JResp.StringOf("ship_date")
ls_Created_at = loo_JResp.StringOf("created_at")
ls_V_Currency = loo_JResp.StringOf("shipment_cost.currency")
ls_Amount = loo_JResp.StringOf("shipment_cost.amount")
ls_Insurance_costCurrency = loo_JResp.StringOf("insurance_cost.currency")
li_Insurance_costAmount = loo_JResp.IntOf("insurance_cost.amount")
ls_Tracking_number = loo_JResp.StringOf("tracking_number")
li_Is_return_label = loo_JResp.BoolOf("is_return_label")
ls_Rma_number = loo_JResp.StringOf("rma_number")
li_Is_international = loo_JResp.BoolOf("is_international")
ls_Batch_id = loo_JResp.StringOf("batch_id")
ls_Carrier_id = loo_JResp.StringOf("carrier_id")
ls_Service_code = loo_JResp.StringOf("service_code")
ls_Package_code = loo_JResp.StringOf("package_code")
li_Voided = loo_JResp.BoolOf("voided")
ls_Voided_at = loo_JResp.StringOf("voided_at")
ls_Label_format = loo_JResp.StringOf("label_format")
ls_Label_layout = loo_JResp.StringOf("label_layout")
li_Trackable = loo_JResp.BoolOf("trackable")
ls_Carrier_code = loo_JResp.StringOf("carrier_code")
ls_Tracking_status = loo_JResp.StringOf("tracking_status")
ls_V_Pdf = loo_JResp.StringOf("label_download.pdf")
ls_Png = loo_JResp.StringOf("label_download.png")
ls_Zpl = loo_JResp.StringOf("label_download.zpl")
ls_Href = loo_JResp.StringOf("label_download.href")
ls_Form_download = loo_JResp.StringOf("form_download")
ls_Insurance_claim = loo_JResp.StringOf("insurance_claim")
i = 0
li_Count_i = loo_JResp.SizeOfArray("packages")
do while i < li_Count_i
loo_JResp.I = i
ls_Package_code = loo_JResp.StringOf("packages[i].package_code")
li_Value = loo_JResp.IntOf("packages[i].weight.value")
ls_Unit = loo_JResp.StringOf("packages[i].weight.unit")
ls_DimensionsUnit = loo_JResp.StringOf("packages[i].dimensions.unit")
li_Length = loo_JResp.IntOf("packages[i].dimensions.length")
li_Width = loo_JResp.IntOf("packages[i].dimensions.width")
li_Height = loo_JResp.IntOf("packages[i].dimensions.height")
ls_Insured_valueCurrency = loo_JResp.StringOf("packages[i].insured_value.currency")
li_Insured_valueAmount = loo_JResp.IntOf("packages[i].insured_value.amount")
ls_Tracking_number = loo_JResp.StringOf("packages[i].tracking_number")
ls_Reference1 = loo_JResp.StringOf("packages[i].label_messages.reference1")
ls_Reference2 = loo_JResp.StringOf("packages[i].label_messages.reference2")
ls_Reference3 = loo_JResp.StringOf("packages[i].label_messages.reference3")
ls_External_package_id = loo_JResp.StringOf("packages[i].external_package_id")
i = i + 1
loop
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
Curl Command
curl -X POST
-H "API-Key: {{API_KEY}}"
-H "Content-Type: application/json"
-d '{
"is_return_label": true,
"rma_number": "123456789",
"shipment": {
"service_code": "usps_priority_mail",
"ship_from": {
"name": "Amanda Miller",
"address_line1": "525 S Winchester Blvd",
"city_locality": "San Jose",
"state_province": "CA",
"postal_code": "95128",
"country_code": "US"
},
"ship_to": {
"company_name": "Example Corp.",
"address_line1": "4009 Marathon Blvd",
"city_locality": "Austin",
"state_province": "TX",
"postal_code": "78756",
"country_code": "US",
"phone": "512-555-5555"
},
"packages": [
{
"weight": {
"value": 17,
"unit": "pound"
},
"dimensions": {
"length": 36,
"width": 12,
"height": 24,
"unit": "inch"
}
}
]
}
}'
https://api.shipengine.com/v1/labels
Postman Collection Item JSON
{
"name": "Create a return label",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"is_return_label\": true,\n\t\"rma_number\": \"123456789\",\n\t\"shipment\": {\n\t\t\"service_code\": \"usps_priority_mail\",\n\t\t\"ship_from\": {\n\t\t\t\"name\": \"Amanda Miller\",\n\t\t\t\"address_line1\": \"525 S Winchester Blvd\",\n\t\t\t\"city_locality\": \"San Jose\",\n\t\t\t\"state_province\": \"CA\",\n\t\t\t\"postal_code\": \"95128\",\n\t\t\t\"country_code\": \"US\"\n\t\t},\n\t\t\"ship_to\": {\n\t\t\t\"company_name\": \"Example Corp.\",\n\t\t\t\"address_line1\": \"4009 Marathon Blvd\",\n\t\t\t\"city_locality\": \"Austin\",\n\t\t\t\"state_province\": \"TX\",\n\t\t\t\"postal_code\": \"78756\",\n\t\t\t\"country_code\": \"US\",\n\t\t\t\"phone\": \"512-555-5555\"\n\t\t},\n\t\t\"packages\": [\n\t\t\t{\n\t\t\t\t\"weight\": {\n\t\t\t\t\t\"value\": 17,\n\t\t\t\t\t\"unit\": \"pound\"\n\t\t\t\t},\n\t\t\t\t\"dimensions\": {\n\t\t\t\t\t\"length\": 36,\n\t\t\t\t\t\"width\": 12,\n\t\t\t\t\t\"height\": 24,\n\t\t\t\t\t\"unit\": \"inch\"\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n}"
},
"url": {
"raw": "https://api.shipengine.com/v1/labels",
"protocol": "https",
"host": [
"api",
"shipengine",
"com"
],
"path": [
"v1",
"labels"
]
},
"description": "Return labels are created just like outgoing labels, but with an additional `is_return_label` flag. You can also optionally specify an `rma_number` (Return Merchandise Authorization)"
},
"response": [
{
"name": "Create a return label",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"is_return_label\": true,\n\t\"rma_number\": \"123456789\",\n\t\"shipment\": {\n\t\t\"service_code\": \"usps_priority_mail\",\n\t\t\"ship_from\": {\n\t\t\t\"name\": \"Amanda Miller\",\n\t\t\t\"address_line1\": \"525 S Winchester Blvd\",\n\t\t\t\"city_locality\": \"San Jose\",\n\t\t\t\"state_province\": \"CA\",\n\t\t\t\"postal_code\": \"95128\",\n\t\t\t\"country_code\": \"US\"\n\t\t},\n\t\t\"ship_to\": {\n\t\t\t\"company_name\": \"Example Corp.\",\n\t\t\t\"address_line1\": \"4009 Marathon Blvd\",\n\t\t\t\"city_locality\": \"Austin\",\n\t\t\t\"state_province\": \"TX\",\n\t\t\t\"postal_code\": \"78756\",\n\t\t\t\"country_code\": \"US\",\n\t\t\t\"phone\": \"512-555-5555\"\n\t\t},\n\t\t\"packages\": [\n\t\t\t{\n\t\t\t\t\"weight\": {\n\t\t\t\t\t\"value\": 17,\n\t\t\t\t\t\"unit\": \"pound\"\n\t\t\t\t},\n\t\t\t\t\"dimensions\": {\n\t\t\t\t\t\"length\": 36,\n\t\t\t\t\t\"width\": 12,\n\t\t\t\t\t\"height\": 24,\n\t\t\t\t\t\"unit\": \"inch\"\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://api.shipengine.com/v1/labels",
"protocol": "https",
"host": [
"api",
"shipengine",
"com"
],
"path": [
"v1",
"labels"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Wed, 18 Sep 2019 13:55:37 GMT"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "1826"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Access-Control-Allow-Origin",
"value": "https://www.shipengine.com"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "x-shipengine-requestid",
"value": "e876812b-185e-432d-ac30-f65a3ff3b3ef"
}
],
"cookie": [
],
"body": "{\n \"label_id\": \"se-1382827\",\n \"status\": \"completed\",\n \"shipment_id\": \"se-4151872\",\n \"ship_date\": \"2019-09-18T00:00:00Z\",\n \"created_at\": \"2019-09-18T13:55:37.0247767Z\",\n \"shipment_cost\": {\n \"currency\": \"usd\",\n \"amount\": 98.14\n },\n \"insurance_cost\": {\n \"currency\": \"usd\",\n \"amount\": 0\n },\n \"tracking_number\": \"9405511899564298878259\",\n \"is_return_label\": true,\n \"rma_number\": \"123456789\",\n \"is_international\": false,\n \"batch_id\": \"\",\n \"carrier_id\": \"se-121861\",\n \"service_code\": \"usps_priority_mail\",\n \"package_code\": \"package\",\n \"voided\": false,\n \"voided_at\": null,\n \"label_format\": \"pdf\",\n \"label_layout\": \"4x6\",\n \"trackable\": true,\n \"carrier_code\": \"stamps_com\",\n \"tracking_status\": \"in_transit\",\n \"label_download\": {\n \"pdf\": \"https://api.shipengine.com/v1/downloads/10/XksbpgC37Um_NGiv4Qf_GA/label-1382827.pdf\",\n \"png\": \"https://api.shipengine.com/v1/downloads/10/XksbpgC37Um_NGiv4Qf_GA/label-1382827.png\",\n \"zpl\": \"https://api.shipengine.com/v1/downloads/10/XksbpgC37Um_NGiv4Qf_GA/label-1382827.zpl\",\n \"href\": \"https://api.shipengine.com/v1/downloads/10/XksbpgC37Um_NGiv4Qf_GA/label-1382827.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\": \"9405511899564298878259\",\n \"label_messages\": {\n \"reference1\": null,\n \"reference2\": null,\n \"reference3\": null\n },\n \"external_package_id\": null\n }\n ]\n}"
}
]
}