Sample code for 30+ languages & platforms
Swift

Shippo Create a New Manifest

See more Shippo Examples

Demonstrates how to create a manifest for your shipments.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

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

    let http = CkoHttp()!

    // Implements the following CURL command:

    // curl https://api.goshippo.com/manifests/
    //     -H "Authorization: ShippoToken shippo_test_831a7a042784f523b95db65444e6e084b636764b" \
    //     -H "Content-Type: application/json"  \
    //     -d '{
    //           "carrier_account": "b741b99f95e841639b54272834bc478c",
    //           "shipment_date": "2014-05-16T23:59:59Z",
    //           "address_from": "28828839a2b04e208ac2aa4945fbca9a",
    //           "transactions": [
    //             "64bba01845ef40d29374032599f22588", 
    //             "c169aa586a844cc49da00d0272b590e1"
    //             ],
    //           "async": false
    //         }'

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

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

    // {
    //   "carrier_account": "b741b99f95e841639b54272834bc478c",
    //   "shipment_date": "2014-05-16T23:59:59Z",
    //   "address_from": "28828839a2b04e208ac2aa4945fbca9a",
    //   "transactions": [
    //     "64bba01845ef40d29374032599f22588",
    //     "c169aa586a844cc49da00d0272b590e1"
    //   ],
    //   "async": false
    // }

    let json = CkoJsonObject()!
    json.updateString(jsonPath: "carrier_account", value: "b741b99f95e841639b54272834bc478c")
    json.updateString(jsonPath: "shipment_date", value: "2014-05-16T23:59:59Z")
    json.updateString(jsonPath: "address_from", value: "28828839a2b04e208ac2aa4945fbca9a")
    json.updateString(jsonPath: "transactions[0]", value: "64bba01845ef40d29374032599f22588")
    json.updateString(jsonPath: "transactions[1]", value: "c169aa586a844cc49da00d0272b590e1")
    json.updateBool(jsonPath: "async", value: false)

    http.setRequestHeader(name: "Authorization", value: "ShippoToken shippo_test_831a7a042784f523b95db65444e6e084b636764b")
    http.setRequestHeader(name: "Content-Type", value: "application/json")

    let resp = CkoHttpResponse()!
    success = http.httpJson(verb: "POST", url: "https://api.goshippo.com/manifests/", json: json, contentType: "application/json", response: resp)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    let sbResponseBody = CkoStringBuilder()!
    resp.getBodySb(sb: sbResponseBody)
    let jResp = CkoJsonObject()!
    jResp.loadSb(sb: sbResponseBody)
    jResp.emitCompact = false

    print("Response Body:")
    print("\(jResp.emit()!)")

    var respStatusCode: Int = resp.statusCode.intValue
    print("Response Status Code = \(respStatusCode)")
    if respStatusCode >= 400 {
        print("Response Header:")
        print("\(resp.header!)")
        print("Failed.")
        return
    }

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

    // {
    //   "address_from": "28828839a2b04e208ac2aa4945fbca9a",
    //   "carrier_account": "b741b99f95e841639b54272834bc478c",
    //   "documents": [
    //     "https://shippo-delivery.s3.amazonaws.com/0fadebf6f60c4aca95fa01bcc59c79ae.pdf?Signature=tlQU3RECwdHUQJQadwqg5bAzGFQ%3D&Expires=1402803835&AWSAccessKeyId=AKIAJTHP3LLFMYAWALIA"
    //   ],
    //   "object_created": "2014-05-16T03:43:52.765Z",
    //   "object_id": "0fadebf6f60c4aca95fa01bcc59c79ae",
    //   "object_owner": "mrhippo@goshippo.com",
    //   "object_updated": "2014-05-16T03:43:55.445Z",
    //   "shipment_date": "2014-05-16T23:59:59Z",
    //   "status": "SUCCESS",
    //   "transactions": [
    //     "64bba01845ef40d29374032599f22588",
    //     "c169aa586a844cc49da00d0272b590e1"
    //   ]
    // }

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

    var strVal: String?

    var address_from: String? = jResp.string(of: "address_from")
    var carrier_account: String? = jResp.string(of: "carrier_account")
    var object_created: String? = jResp.string(of: "object_created")
    var object_id: String? = jResp.string(of: "object_id")
    var object_owner: String? = jResp.string(of: "object_owner")
    var object_updated: String? = jResp.string(of: "object_updated")
    var shipment_date: String? = jResp.string(of: "shipment_date")
    var status: String? = jResp.string(of: "status")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "documents").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "documents[i]")
        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "transactions").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "transactions[i]")
        i = i + 1
    }


}