Sample code for 30+ languages & platforms
Swift

Constant Contact - Add Contacts to List

See more Constant Contact Examples

Demonstrates a call to add five existing contacts to two lists.

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 -X POST \
    //   https://api.cc.email/v3/activities/add_list_memberships \
    //   -H 'Accept: application/json' \
    //   -H 'Authorization: Bearer {access_token}' \
    //   -H 'cache-control: no-cache' \
    //   -H 'content-type: application/json' \
    //   -d '{
    //   "source": {
    //     "contact_ids": [
    //       "{contact_id1}",
    //       "{contact_id2}",
    //       "{contact_id3}",
    //       "{contact_id4}",
    //       "{contact_id5}",
    //       "{contact_id6}"
    //     ]
    //   },
    //   "list_ids": [
    //     "{list_id1}",
    //     "{list_id2}"
    //   ]
    // }'

    // Use the following online tool to generate HTTP code from a CURL command
    // Convert a cURL Command to HTTP Source Code

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

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

    // {
    //   "source": {
    //     "contact_ids": [
    //       "{contact_id1}",
    //       "{contact_id2}",
    //       "{contact_id3}",
    //       "{contact_id4}",
    //       "{contact_id5}",
    //       "{contact_id6}"
    //     ]
    //   },
    //   "list_ids": [
    //     "{list_id1}",
    //     "{list_id2}"
    //   ]
    // }

    let json = CkoJsonObject()!
    json.updateString(jsonPath: "source.contact_ids[0]", value: "{contact_id1}")
    json.updateString(jsonPath: "source.contact_ids[1]", value: "{contact_id2}")
    json.updateString(jsonPath: "source.contact_ids[2]", value: "{contact_id3}")
    json.updateString(jsonPath: "source.contact_ids[3]", value: "{contact_id4}")
    json.updateString(jsonPath: "source.contact_ids[4]", value: "{contact_id5}")
    json.updateString(jsonPath: "source.contact_ids[5]", value: "{contact_id6}")
    json.updateString(jsonPath: "list_ids[0]", value: "{list_id1}")
    json.updateString(jsonPath: "list_ids[1]", value: "{list_id2}")

    // Adds the "Authorization: Bearer ACCESS_TOKEN" header.
    http.authToken = "ACCESS_TOKEN"
    http.setRequestHeader(name: "content-type", value: "application/json")
    http.setRequestHeader(name: "Accept", value: "application/json")
    http.setRequestHeader(name: "cache-control", value: "no-cache")

    let resp = CkoHttpResponse()!
    success = http.httpJson(verb: "POST", url: "https://api.cc.email/v3/activities/add_list_memberships", 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)

    // {
    //   "activity_id": "activity_id",
    //   "state": "initialized",
    //   "created_at": "2018-02-28T13:49:41-05:00",
    //   "updated_at": "2018-02-28T13:49:41-05:00",
    //   "percent_done": 1,
    //   "activity_errors": [
    //   ],
    //   "status": {
    //     "list_count": 2
    //   },
    //   "_links": {
    //     "self": {
    //       "href": "/v3/activities/activity_id"
    //     }
    //   }
    // }

    // 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 activity_id: String? = jResp.string(of: "activity_id")
    var state: String? = jResp.string(of: "state")
    var created_at: String? = jResp.string(of: "created_at")
    var updated_at: String? = jResp.string(of: "updated_at")
    var percent_done: Int = jResp.int(of: "percent_done").intValue
    var statusList_count: Int = jResp.int(of: "status.list_count").intValue
    var v_linksSelfHref: String? = jResp.string(of: "_links.self.href")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "activity_errors").intValue
    while i < count_i {
        jResp.i = i
        var errMsg: String? = jResp.string(of: "activity_errors[i]")
        i = i + 1
    }


}