Chilkat Online Tools

Java / ShipEngine Walkthrough / Create a label from a shipment

Back to Collection Items

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

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

    CkHttpResponse resp = http.QuickRequest("POST","https://api.shipengine.com/v1/labels/shipment/se-123456");
    if (http.get_LastMethodSuccess() == false) {
        System.out.println(http.lastErrorText());
        return;
        }

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    resp.GetBodySb(sbResponseBody);

    CkJsonObject jResp = new CkJsonObject();
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    System.out.println("Response Body:");
    System.out.println(jResp.emit());

    int respStatusCode = resp.get_StatusCode();
    System.out.println("Response Status Code = " + respStatusCode);
    if (respStatusCode >= 400) {
        System.out.println("Response Header:");
        System.out.println(resp.header());
        System.out.println("Failed.");

        return;
        }

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "label_id": "se-1376111",
    //   "status": "completed",
    //   "shipment_id": "se-4140216",
    //   "ship_date": "2019-09-17T00:00:00Z",
    //   "created_at": "2019-09-17T21:15:06.1985884Z",
    //   "shipment_cost": {
    //     "currency": "usd",
    //     "amount": 98.14
    //   },
    //   "insurance_cost": {
    //     "currency": "usd",
    //     "amount": 0
    //   },
    //   "tracking_number": "9405511899564298845657",
    //   "is_return_label": false,
    //   "rma_number": null,
    //   "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/pNIA3R8QfEqnWI80_RI8OA/label-1376111.pdf",
    //     "png": "https://api.shipengine.com/v1/downloads/10/pNIA3R8QfEqnWI80_RI8OA/label-1376111.png",
    //     "zpl": "https://api.shipengine.com/v1/downloads/10/pNIA3R8QfEqnWI80_RI8OA/label-1376111.zpl",
    //     "href": "https://api.shipengine.com/v1/downloads/10/pNIA3R8QfEqnWI80_RI8OA/label-1376111.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": "9405511899564298845657",
    //       "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

    int Value;
    String Unit;
    String dimensionsUnit;
    int Length;
    int Width;
    int Height;
    String insured_valueCurrency;
    int insured_valueAmount;
    String Reference1;
    String Reference2;
    String Reference3;
    String external_package_id;

    String label_id = jResp.stringOf("label_id");
    String status = jResp.stringOf("status");
    String shipment_id = jResp.stringOf("shipment_id");
    String ship_date = jResp.stringOf("ship_date");
    String created_at = jResp.stringOf("created_at");
    String v_Currency = jResp.stringOf("shipment_cost.currency");
    String Amount = jResp.stringOf("shipment_cost.amount");
    String insurance_costCurrency = jResp.stringOf("insurance_cost.currency");
    int insurance_costAmount = jResp.IntOf("insurance_cost.amount");
    String tracking_number = jResp.stringOf("tracking_number");
    boolean is_return_label = jResp.BoolOf("is_return_label");
    String rma_number = jResp.stringOf("rma_number");
    boolean is_international = jResp.BoolOf("is_international");
    String batch_id = jResp.stringOf("batch_id");
    String carrier_id = jResp.stringOf("carrier_id");
    String service_code = jResp.stringOf("service_code");
    String package_code = jResp.stringOf("package_code");
    boolean voided = jResp.BoolOf("voided");
    String voided_at = jResp.stringOf("voided_at");
    String label_format = jResp.stringOf("label_format");
    String label_layout = jResp.stringOf("label_layout");
    boolean trackable = jResp.BoolOf("trackable");
    String carrier_code = jResp.stringOf("carrier_code");
    String tracking_status = jResp.stringOf("tracking_status");
    String v_Pdf = jResp.stringOf("label_download.pdf");
    String Png = jResp.stringOf("label_download.png");
    String Zpl = jResp.stringOf("label_download.zpl");
    String Href = jResp.stringOf("label_download.href");
    String form_download = jResp.stringOf("form_download");
    String insurance_claim = jResp.stringOf("insurance_claim");
    int i = 0;
    int count_i = jResp.SizeOfArray("packages");
    while (i < count_i) {
        jResp.put_I(i);
        package_code = jResp.stringOf("packages[i].package_code");
        Value = jResp.IntOf("packages[i].weight.value");
        Unit = jResp.stringOf("packages[i].weight.unit");
        dimensionsUnit = jResp.stringOf("packages[i].dimensions.unit");
        Length = jResp.IntOf("packages[i].dimensions.length");
        Width = jResp.IntOf("packages[i].dimensions.width");
        Height = jResp.IntOf("packages[i].dimensions.height");
        insured_valueCurrency = jResp.stringOf("packages[i].insured_value.currency");
        insured_valueAmount = jResp.IntOf("packages[i].insured_value.amount");
        tracking_number = jResp.stringOf("packages[i].tracking_number");
        Reference1 = jResp.stringOf("packages[i].label_messages.reference1");
        Reference2 = jResp.stringOf("packages[i].label_messages.reference2");
        Reference3 = jResp.stringOf("packages[i].label_messages.reference3");
        external_package_id = jResp.stringOf("packages[i].external_package_id");
        i = i+1;
        }
  }
}

Curl Command

curl -X POST
	-H "API-Key: {{API_KEY}}"
https://api.shipengine.com/v1/labels/shipment/se-123456

Postman Collection Item JSON

{
  "name": "Create a label from a shipment",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
    ],
    "url": {
      "raw": "https://api.shipengine.com/v1/labels/shipment/{{shipment_id}}",
      "protocol": "https",
      "host": [
        "api",
        "shipengine",
        "com"
      ],
      "path": [
        "v1",
        "labels",
        "shipment",
        "{{shipment_id}}"
      ]
    },
    "description": "If you've previously created a shipment on ShipEngine, then you can create a label from that shipment without having to specify any of the shipment details again."
  },
  "response": [
    {
      "name": "Create a label from a shipment",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "url": {
          "raw": "https://api.shipengine.com/v1/labels/shipment/{{shipment_id}}",
          "protocol": "https",
          "host": [
            "api",
            "shipengine",
            "com"
          ],
          "path": [
            "v1",
            "labels",
            "shipment",
            "{{shipment_id}}"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Tue, 17 Sep 2019 21:15:07 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json; charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "1820"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "https://www.shipengine.com"
        },
        {
          "key": "Vary",
          "value": "Origin"
        },
        {
          "key": "server",
          "value": "Microsoft-IIS/8.0"
        },
        {
          "key": "x-newrelic-app-data",
          "value": "PxQGVFZXCgITVVZbAwMCV1YGFB9AMQYAZBBZDEtZV0ZaCldOZgRRIzR/GC0HAV1fQ0sxF0VSXwcXVHpSAAMPNVkWUDFQUURfVgtNQx1RHVJIBxlQU1EMBAZRVE4aABtEIQgHClUiV1sGVQBTCg12ABFJXwBdElY/"
        },
        {
          "key": "x-powered-by",
          "value": "ASP.NET"
        },
        {
          "key": "x-shipengine-environment",
          "value": "j"
        },
        {
          "key": "x-shipengine-requestid",
          "value": "8ebc06bb-90a3-495b-bc0d-b4bb2ef13073"
        },
        {
          "key": "x-shipengine-server",
          "value": "SS-J-WEB03"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"label_id\": \"se-1376111\",\n    \"status\": \"completed\",\n    \"shipment_id\": \"se-4140216\",\n    \"ship_date\": \"2019-09-17T00:00:00Z\",\n    \"created_at\": \"2019-09-17T21:15:06.1985884Z\",\n    \"shipment_cost\": {\n        \"currency\": \"usd\",\n        \"amount\": 98.14\n    },\n    \"insurance_cost\": {\n        \"currency\": \"usd\",\n        \"amount\": 0\n    },\n    \"tracking_number\": \"9405511899564298845657\",\n    \"is_return_label\": false,\n    \"rma_number\": null,\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/pNIA3R8QfEqnWI80_RI8OA/label-1376111.pdf\",\n        \"png\": \"https://api.shipengine.com/v1/downloads/10/pNIA3R8QfEqnWI80_RI8OA/label-1376111.png\",\n        \"zpl\": \"https://api.shipengine.com/v1/downloads/10/pNIA3R8QfEqnWI80_RI8OA/label-1376111.zpl\",\n        \"href\": \"https://api.shipengine.com/v1/downloads/10/pNIA3R8QfEqnWI80_RI8OA/label-1376111.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\": \"9405511899564298845657\",\n            \"label_messages\": {\n                \"reference1\": null,\n                \"reference2\": null,\n                \"reference3\": null\n            },\n            \"external_package_id\": null\n        }\n    ]\n}"
    }
  ]
}