Chilkat Online Tools

C++ / ShipEngine Walkthrough / Create a shipment

Back to Collection Items

#include <CkHttp.h>
#include <CkJsonObject.h>
#include <CkHttpResponse.h>
#include <CkStringBuilder.h>

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

    CkHttp http;
    bool success;

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "shipments": [
    //     {
    //       "service_code": "usps_priority_mail",
    //       "ship_from": {
    //         "name": "John Doe",
    //         "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"
    //       },
    //       "ship_to": {
    //         "name": "Amanda Miller",
    //         "address_line1": "525 S Winchester Blvd",
    //         "city_locality": "San Jose",
    //         "state_province": "CA",
    //         "postal_code": "95128",
    //         "country_code": "US"
    //       },
    //       "packages": [
    //         {
    //           "weight": {
    //             "value": 17,
    //             "unit": "pound"
    //           },
    //           "dimensions": {
    //             "length": 36,
    //             "width": 12,
    //             "height": 24,
    //             "unit": "inch"
    //           }
    //         }
    //       ]
    //     }
    //   ]
    // }

    CkJsonObject json;
    json.UpdateString("shipments[0].service_code","usps_priority_mail");
    json.UpdateString("shipments[0].ship_from.name","John Doe");
    json.UpdateString("shipments[0].ship_from.company_name","Example Corp.");
    json.UpdateString("shipments[0].ship_from.address_line1","4009 Marathon Blvd");
    json.UpdateString("shipments[0].ship_from.city_locality","Austin");
    json.UpdateString("shipments[0].ship_from.state_province","TX");
    json.UpdateString("shipments[0].ship_from.postal_code","78756");
    json.UpdateString("shipments[0].ship_from.country_code","US");
    json.UpdateString("shipments[0].ship_from.phone","512-555-5555");
    json.UpdateString("shipments[0].ship_to.name","Amanda Miller");
    json.UpdateString("shipments[0].ship_to.address_line1","525 S Winchester Blvd");
    json.UpdateString("shipments[0].ship_to.city_locality","San Jose");
    json.UpdateString("shipments[0].ship_to.state_province","CA");
    json.UpdateString("shipments[0].ship_to.postal_code","95128");
    json.UpdateString("shipments[0].ship_to.country_code","US");
    json.UpdateInt("shipments[0].packages[0].weight.value",17);
    json.UpdateString("shipments[0].packages[0].weight.unit","pound");
    json.UpdateInt("shipments[0].packages[0].dimensions.length",36);
    json.UpdateInt("shipments[0].packages[0].dimensions.width",12);
    json.UpdateInt("shipments[0].packages[0].dimensions.height",24);
    json.UpdateString("shipments[0].packages[0].dimensions.unit","inch");

    http.SetRequestHeader("API-Key","{{API_KEY}}");
    http.SetRequestHeader("Content-Type","application/json");

    CkHttpResponse *resp = http.PostJson3("https://api.shipengine.com/v1/shipments","application/json",json);
    if (http.get_LastMethodSuccess() == false) {
        std::cout << http.lastErrorText() << "\r\n";
        return;
    }

    CkStringBuilder sbResponseBody;
    resp->GetBodySb(sbResponseBody);

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

    std::cout << "Response Body:" << "\r\n";
    std::cout << jResp.emit() << "\r\n";

    int respStatusCode = resp->get_StatusCode();
    std::cout << "Response Status Code = " << respStatusCode << "\r\n";
    if (respStatusCode >= 400) {
        std::cout << "Response Header:" << "\r\n";
        std::cout << resp->header() << "\r\n";
        std::cout << "Failed." << "\r\n";
        delete resp;
        return;
    }

    delete resp;

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

    // {
    //   "has_errors": false,
    //   "shipments": [
    //     {
    //       "errors": [
    //       ],
    //       "address_validation": null,
    //       "shipment_id": "se-4134507",
    //       "carrier_id": null,
    //       "service_code": null,
    //       "external_shipment_id": null,
    //       "ship_date": "2019-09-17T00:00:00Z",
    //       "created_at": "2019-09-17T18:37:11.096563Z",
    //       "modified_at": "2019-09-17T18:37:11.096563Z",
    //       "shipment_status": "pending",
    //       "ship_to": {
    //         "name": "Amanda Miller",
    //         "phone": null,
    //         "company_name": null,
    //         "address_line1": "525 S Winchester Blvd",
    //         "address_line2": null,
    //         "address_line3": null,
    //         "city_locality": "San Jose",
    //         "state_province": "CA",
    //         "postal_code": "95128",
    //         "country_code": "US",
    //         "address_residential_indicator": "unknown"
    //       },
    //       "ship_from": {
    //         "name": "John Doe",
    //         "phone": "512-555-5555",
    //         "company_name": null,
    //         "address_line1": "4009 Marathon Blvd",
    //         "address_line2": null,
    //         "address_line3": null,
    //         "city_locality": "Austin",
    //         "state_province": "TX",
    //         "postal_code": "78756",
    //         "country_code": "US",
    //         "address_residential_indicator": "unknown"
    //       },
    //       "warehouse_id": null,
    //       "return_to": {
    //         "name": "John Doe",
    //         "phone": "512-555-5555",
    //         "company_name": null,
    //         "address_line1": "4009 Marathon Blvd",
    //         "address_line2": null,
    //         "address_line3": null,
    //         "city_locality": "Austin",
    //         "state_province": "TX",
    //         "postal_code": "78756",
    //         "country_code": "US",
    //         "address_residential_indicator": "unknown"
    //       },
    //       "confirmation": "none",
    //       "customs": null,
    //       "external_order_id": null,
    //       "order_source_code": null,
    //       "advanced_options": {
    //         "bill_to_account": null,
    //         "bill_to_country_code": null,
    //         "bill_to_party": null,
    //         "bill_to_postal_code": null,
    //         "contains_alcohol": false,
    //         "delivered_duty_paid": false,
    //         "non_machinable": false,
    //         "saturday_delivery": false,
    //         "dry_ice": false,
    //         "dry_ice_weight": null,
    //         "freight_class": null,
    //         "custom_field1": null,
    //         "custom_field2": null,
    //         "custom_field3": null
    //       },
    //       "insurance_provider": "none",
    //       "tags": [
    //       ],
    //       "packages": [
    //         {
    //           "package_code": "package",
    //           "weight": {
    //             "value": 17,
    //             "unit": "pound"
    //           },
    //           "dimensions": {
    //             "unit": "inch",
    //             "length": 36,
    //             "width": 12,
    //             "height": 24
    //           },
    //           "insured_value": {
    //             "currency": "usd",
    //             "amount": 0
    //           },
    //           "label_messages": {
    //             "reference1": null,
    //             "reference2": null,
    //             "reference3": null
    //           },
    //           "external_package_id": null
    //         }
    //       ],
    //       "total_weight": {
    //         "value": 17,
    //         "unit": "pound"
    //       },
    //       "items": [
    //       ]
    //     }
    //   ]
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    const char *address_validation = 0;
    const char *shipment_id = 0;
    const char *carrier_id = 0;
    const char *service_code = 0;
    const char *external_shipment_id = 0;
    const char *ship_date = 0;
    const char *created_at = 0;
    const char *modified_at = 0;
    const char *shipment_status = 0;
    const char *Name = 0;
    const char *Phone = 0;
    const char *Company_name = 0;
    const char *Address_line1 = 0;
    const char *Address_line2 = 0;
    const char *Address_line3 = 0;
    const char *City_locality = 0;
    const char *State_province = 0;
    const char *Postal_code = 0;
    const char *Country_code = 0;
    const char *Address_residential_indicator = 0;
    const char *ship_fromName = 0;
    const char *ship_fromPhone = 0;
    const char *ship_fromCompany_name = 0;
    const char *ship_fromAddress_line1 = 0;
    const char *ship_fromAddress_line2 = 0;
    const char *ship_fromAddress_line3 = 0;
    const char *ship_fromCity_locality = 0;
    const char *ship_fromState_province = 0;
    const char *ship_fromPostal_code = 0;
    const char *ship_fromCountry_code = 0;
    const char *ship_fromAddress_residential_indicator = 0;
    const char *warehouse_id = 0;
    const char *return_toName = 0;
    const char *return_toPhone = 0;
    const char *return_toCompany_name = 0;
    const char *return_toAddress_line1 = 0;
    const char *return_toAddress_line2 = 0;
    const char *return_toAddress_line3 = 0;
    const char *return_toCity_locality = 0;
    const char *return_toState_province = 0;
    const char *return_toPostal_code = 0;
    const char *return_toCountry_code = 0;
    const char *return_toAddress_residential_indicator = 0;
    const char *confirmation = 0;
    const char *customs = 0;
    const char *external_order_id = 0;
    const char *order_source_code = 0;
    const char *Bill_to_account = 0;
    const char *Bill_to_country_code = 0;
    const char *Bill_to_party = 0;
    const char *Bill_to_postal_code = 0;
    bool Contains_alcohol;
    bool Delivered_duty_paid;
    bool Non_machinable;
    bool Saturday_delivery;
    bool Dry_ice;
    const char *Dry_ice_weight = 0;
    const char *Freight_class = 0;
    const char *Custom_field1 = 0;
    const char *Custom_field2 = 0;
    const char *Custom_field3 = 0;
    const char *insurance_provider = 0;
    int Value;
    const char *Unit = 0;
    int j;
    int count_j;
    const char *package_code = 0;
    int weightValue;
    const char *weightUnit = 0;
    const char *dimensionsUnit = 0;
    int Length;
    int Width;
    int Height;
    const char *v_Currency = 0;
    int Amount;
    const char *Reference1 = 0;
    const char *Reference2 = 0;
    const char *Reference3 = 0;
    const char *external_package_id = 0;

    bool has_errors = jResp.BoolOf("has_errors");
    int i = 0;
    int count_i = jResp.SizeOfArray("shipments");
    while (i < count_i) {
        jResp.put_I(i);
        address_validation = jResp.stringOf("shipments[i].address_validation");
        shipment_id = jResp.stringOf("shipments[i].shipment_id");
        carrier_id = jResp.stringOf("shipments[i].carrier_id");
        service_code = jResp.stringOf("shipments[i].service_code");
        external_shipment_id = jResp.stringOf("shipments[i].external_shipment_id");
        ship_date = jResp.stringOf("shipments[i].ship_date");
        created_at = jResp.stringOf("shipments[i].created_at");
        modified_at = jResp.stringOf("shipments[i].modified_at");
        shipment_status = jResp.stringOf("shipments[i].shipment_status");
        Name = jResp.stringOf("shipments[i].ship_to.name");
        Phone = jResp.stringOf("shipments[i].ship_to.phone");
        Company_name = jResp.stringOf("shipments[i].ship_to.company_name");
        Address_line1 = jResp.stringOf("shipments[i].ship_to.address_line1");
        Address_line2 = jResp.stringOf("shipments[i].ship_to.address_line2");
        Address_line3 = jResp.stringOf("shipments[i].ship_to.address_line3");
        City_locality = jResp.stringOf("shipments[i].ship_to.city_locality");
        State_province = jResp.stringOf("shipments[i].ship_to.state_province");
        Postal_code = jResp.stringOf("shipments[i].ship_to.postal_code");
        Country_code = jResp.stringOf("shipments[i].ship_to.country_code");
        Address_residential_indicator = jResp.stringOf("shipments[i].ship_to.address_residential_indicator");
        ship_fromName = jResp.stringOf("shipments[i].ship_from.name");
        ship_fromPhone = jResp.stringOf("shipments[i].ship_from.phone");
        ship_fromCompany_name = jResp.stringOf("shipments[i].ship_from.company_name");
        ship_fromAddress_line1 = jResp.stringOf("shipments[i].ship_from.address_line1");
        ship_fromAddress_line2 = jResp.stringOf("shipments[i].ship_from.address_line2");
        ship_fromAddress_line3 = jResp.stringOf("shipments[i].ship_from.address_line3");
        ship_fromCity_locality = jResp.stringOf("shipments[i].ship_from.city_locality");
        ship_fromState_province = jResp.stringOf("shipments[i].ship_from.state_province");
        ship_fromPostal_code = jResp.stringOf("shipments[i].ship_from.postal_code");
        ship_fromCountry_code = jResp.stringOf("shipments[i].ship_from.country_code");
        ship_fromAddress_residential_indicator = jResp.stringOf("shipments[i].ship_from.address_residential_indicator");
        warehouse_id = jResp.stringOf("shipments[i].warehouse_id");
        return_toName = jResp.stringOf("shipments[i].return_to.name");
        return_toPhone = jResp.stringOf("shipments[i].return_to.phone");
        return_toCompany_name = jResp.stringOf("shipments[i].return_to.company_name");
        return_toAddress_line1 = jResp.stringOf("shipments[i].return_to.address_line1");
        return_toAddress_line2 = jResp.stringOf("shipments[i].return_to.address_line2");
        return_toAddress_line3 = jResp.stringOf("shipments[i].return_to.address_line3");
        return_toCity_locality = jResp.stringOf("shipments[i].return_to.city_locality");
        return_toState_province = jResp.stringOf("shipments[i].return_to.state_province");
        return_toPostal_code = jResp.stringOf("shipments[i].return_to.postal_code");
        return_toCountry_code = jResp.stringOf("shipments[i].return_to.country_code");
        return_toAddress_residential_indicator = jResp.stringOf("shipments[i].return_to.address_residential_indicator");
        confirmation = jResp.stringOf("shipments[i].confirmation");
        customs = jResp.stringOf("shipments[i].customs");
        external_order_id = jResp.stringOf("shipments[i].external_order_id");
        order_source_code = jResp.stringOf("shipments[i].order_source_code");
        Bill_to_account = jResp.stringOf("shipments[i].advanced_options.bill_to_account");
        Bill_to_country_code = jResp.stringOf("shipments[i].advanced_options.bill_to_country_code");
        Bill_to_party = jResp.stringOf("shipments[i].advanced_options.bill_to_party");
        Bill_to_postal_code = jResp.stringOf("shipments[i].advanced_options.bill_to_postal_code");
        Contains_alcohol = jResp.BoolOf("shipments[i].advanced_options.contains_alcohol");
        Delivered_duty_paid = jResp.BoolOf("shipments[i].advanced_options.delivered_duty_paid");
        Non_machinable = jResp.BoolOf("shipments[i].advanced_options.non_machinable");
        Saturday_delivery = jResp.BoolOf("shipments[i].advanced_options.saturday_delivery");
        Dry_ice = jResp.BoolOf("shipments[i].advanced_options.dry_ice");
        Dry_ice_weight = jResp.stringOf("shipments[i].advanced_options.dry_ice_weight");
        Freight_class = jResp.stringOf("shipments[i].advanced_options.freight_class");
        Custom_field1 = jResp.stringOf("shipments[i].advanced_options.custom_field1");
        Custom_field2 = jResp.stringOf("shipments[i].advanced_options.custom_field2");
        Custom_field3 = jResp.stringOf("shipments[i].advanced_options.custom_field3");
        insurance_provider = jResp.stringOf("shipments[i].insurance_provider");
        Value = jResp.IntOf("shipments[i].total_weight.value");
        Unit = jResp.stringOf("shipments[i].total_weight.unit");
        j = 0;
        count_j = jResp.SizeOfArray("shipments[i].errors");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("shipments[i].tags");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("shipments[i].packages");
        while (j < count_j) {
            jResp.put_J(j);
            package_code = jResp.stringOf("shipments[i].packages[j].package_code");
            weightValue = jResp.IntOf("shipments[i].packages[j].weight.value");
            weightUnit = jResp.stringOf("shipments[i].packages[j].weight.unit");
            dimensionsUnit = jResp.stringOf("shipments[i].packages[j].dimensions.unit");
            Length = jResp.IntOf("shipments[i].packages[j].dimensions.length");
            Width = jResp.IntOf("shipments[i].packages[j].dimensions.width");
            Height = jResp.IntOf("shipments[i].packages[j].dimensions.height");
            v_Currency = jResp.stringOf("shipments[i].packages[j].insured_value.currency");
            Amount = jResp.IntOf("shipments[i].packages[j].insured_value.amount");
            Reference1 = jResp.stringOf("shipments[i].packages[j].label_messages.reference1");
            Reference2 = jResp.stringOf("shipments[i].packages[j].label_messages.reference2");
            Reference3 = jResp.stringOf("shipments[i].packages[j].label_messages.reference3");
            external_package_id = jResp.stringOf("shipments[i].packages[j].external_package_id");
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("shipments[i].items");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
        }

        i = i + 1;
    }
    }

Curl Command

curl -X POST
	-H "API-Key: {{API_KEY}}"
	-H "Content-Type: application/json"
	-d '{
	"shipments": [{
		"service_code": "usps_priority_mail",
		"ship_from": {
			"name": "John Doe",
			"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"
		},
		"ship_to": {
			"name": "Amanda Miller",
			"address_line1": "525 S Winchester Blvd",
			"city_locality": "San Jose",
			"state_province": "CA",
			"postal_code": "95128",
			"country_code": "US"
		},
		"packages": [
			{
				"weight": {
					"value": 17,
					"unit": "pound"
				},
				"dimensions": {
					"length": 36,
					"width": 12,
					"height": 24,
					"unit": "inch"
				}
			}
		]
	}]
}'
https://api.shipengine.com/v1/shipments

Postman Collection Item JSON

{
  "name": "Create a shipment",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "let response = pm.response.json();",
          "",
          "if (response.shipments.length > 0) {",
          "    pm.collectionVariables.set(\"shipment_id\", response.shipments[0].shipment_id);",
          "    ",
          "    const template = `",
          "        <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css\">",
          "        <link rel=\"stylesheet\" href=\"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css\">",
          "        ",
          "        {{#each shipments}}",
          "            <h1>Shipment Details</h1>",
          "",
          "            <div class=\"container-fluid mb-2\">",
          "                <div class=\"row\">",
          "                    <div class=\"col-12 col-lg-10 col-xl-8\">",
          "                        <table class=\"table mt-2\">",
          "                            <tr>",
          "                                <th>Shipment ID:</th>",
          "                                <td><samp>{{shipment_id}}</samp></td>",
          "                                <th>Status:</th>",
          "                                <td>{{shipment_status}}</td>",
          "                            </tr>",
          "                            <tr>",
          "                                <th>Carrier ID:</th>",
          "                                <td><samp>{{carrier_id}}</samp></td>",
          "                                <th>Service:</th>",
          "                                <td><samp>{{service_code}}</samp></td>",
          "                            </tr>",
          "                        </table>",
          "                    </div>",
          "                </div>",
          "                <div class=\"row\">",
          "                    <div class=\"col-lg-4 col-xl-3 mt-4\">",
          "                        <h2>From:</h2>",
          "                        {{#with ship_from}}",
          "                            {{#if name}}{{name}}<br>{{/if}}",
          "                            {{#if company_name}}{{company_name}}<br>{{/if}}",
          "                            {{#if address_line1}}{{address_line1}}<br>{{/if}}",
          "                            {{#if address_line2}}{{address_line2}}<br>{{/if}}",
          "                            {{#if address_line3}}{{address_line3}}<br>{{/if}}",
          "                            {{city_locality}}, {{state_province}} {{postal_code}}",
          "                        {{/with}}",
          "                    </div>",
          "                    <div class=\"col-lg-4 col-xl-3 mt-4\">",
          "                        <h2>To:</h2>",
          "                        {{#with ship_to}}",
          "                            {{#if name}}{{name}}<br>{{/if}}",
          "                            {{#if company_name}}{{company_name}}<br>{{/if}}",
          "                            {{#if address_line1}}{{address_line1}}<br>{{/if}}",
          "                            {{#if address_line2}}{{address_line2}}<br>{{/if}}",
          "                            {{#if address_line3}}{{address_line3}}<br>{{/if}}",
          "                            {{city_locality}}, {{state_province}} {{postal_code}}",
          "                        {{/with}}",
          "                    </div>",
          "                    <div class=\"col-lg-4 col-xl-3 mt-4\">",
          "                        <h2>Package:</h2>",
          "                        {{#each packages}}",
          "                            <p>",
          "                                <b>weight:</b> {{weight.value}} {{weight.unit}}<br>",
          "                                <b>dimensions:</b> {{dimensions.length}} x {{dimensions.width}} x {{dimensions.height}} {{dimensions.unit}}",
          "                            </p>",
          "                        {{/each}}",
          "                    </div>",
          "                </div>",
          "            </div>",
          "        {{/each}}",
          "    `;",
          "    ",
          "    pm.visualizer.set(template, response);",
          "}"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n\t\"shipments\": [{\n\t\t\"service_code\": \"usps_priority_mail\",\n\t\t\"ship_from\": {\n\t\t\t\"name\": \"John Doe\",\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\"ship_to\": {\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\"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/shipments",
      "protocol": "https",
      "host": [
        "api",
        "shipengine",
        "com"
      ],
      "path": [
        "v1",
        "shipments"
      ]
    },
    "description": "You can store shipment details in ShipEngine and then use the `shipment_id` to easily get rates, create labels, and track packages."
  },
  "response": [
    {
      "name": "Create a shipment",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "name": "Content-Type",
            "type": "text",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n\t\"shipments\": [{\n\t\t\"ship_from\": {\n\t\t\t\"name\": \"John Doe\",\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\"ship_to\": {\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\"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/shipments",
          "protocol": "https",
          "host": [
            "api",
            "shipengine",
            "com"
          ],
          "path": [
            "v1",
            "shipments"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Tue, 17 Sep 2019 18:37:11 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json; charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "3149"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "https://www.shipengine.com"
        },
        {
          "key": "Vary",
          "value": "Origin"
        },
        {
          "key": "x-shipengine-requestid",
          "value": "6c3703f2-7ba1-4e00-88d5-9626217ee3ef"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"has_errors\": false,\n    \"shipments\": [\n        {\n            \"errors\": [],\n            \"address_validation\": null,\n            \"shipment_id\": \"se-4134507\",\n            \"carrier_id\": null,\n            \"service_code\": null,\n            \"external_shipment_id\": null,\n            \"ship_date\": \"2019-09-17T00:00:00Z\",\n            \"created_at\": \"2019-09-17T18:37:11.096563Z\",\n            \"modified_at\": \"2019-09-17T18:37:11.096563Z\",\n            \"shipment_status\": \"pending\",\n            \"ship_to\": {\n                \"name\": \"Amanda Miller\",\n                \"phone\": null,\n                \"company_name\": null,\n                \"address_line1\": \"525 S Winchester Blvd\",\n                \"address_line2\": null,\n                \"address_line3\": null,\n                \"city_locality\": \"San Jose\",\n                \"state_province\": \"CA\",\n                \"postal_code\": \"95128\",\n                \"country_code\": \"US\",\n                \"address_residential_indicator\": \"unknown\"\n            },\n            \"ship_from\": {\n                \"name\": \"John Doe\",\n                \"phone\": \"512-555-5555\",\n                \"company_name\": null,\n                \"address_line1\": \"4009 Marathon Blvd\",\n                \"address_line2\": null,\n                \"address_line3\": null,\n                \"city_locality\": \"Austin\",\n                \"state_province\": \"TX\",\n                \"postal_code\": \"78756\",\n                \"country_code\": \"US\",\n                \"address_residential_indicator\": \"unknown\"\n            },\n            \"warehouse_id\": null,\n            \"return_to\": {\n                \"name\": \"John Doe\",\n                \"phone\": \"512-555-5555\",\n                \"company_name\": null,\n                \"address_line1\": \"4009 Marathon Blvd\",\n                \"address_line2\": null,\n                \"address_line3\": null,\n                \"city_locality\": \"Austin\",\n                \"state_province\": \"TX\",\n                \"postal_code\": \"78756\",\n                \"country_code\": \"US\",\n                \"address_residential_indicator\": \"unknown\"\n            },\n            \"confirmation\": \"none\",\n            \"customs\": null,\n            \"external_order_id\": null,\n            \"order_source_code\": null,\n            \"advanced_options\": {\n                \"bill_to_account\": null,\n                \"bill_to_country_code\": null,\n                \"bill_to_party\": null,\n                \"bill_to_postal_code\": null,\n                \"contains_alcohol\": false,\n                \"delivered_duty_paid\": false,\n                \"non_machinable\": false,\n                \"saturday_delivery\": false,\n                \"dry_ice\": false,\n                \"dry_ice_weight\": null,\n                \"freight_class\": null,\n                \"custom_field1\": null,\n                \"custom_field2\": null,\n                \"custom_field3\": null\n            },\n            \"insurance_provider\": \"none\",\n            \"tags\": [],\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                    \"label_messages\": {\n                        \"reference1\": null,\n                        \"reference2\": null,\n                        \"reference3\": null\n                    },\n                    \"external_package_id\": null\n                }\n            ],\n            \"total_weight\": {\n                \"value\": 17,\n                \"unit\": \"pound\"\n            },\n            \"items\": []\n        }\n    ]\n}"
    }
  ]
}