Sample code for 30+ languages & platforms
Swift

IntakeQ: Query Intake Forms

See more IntakeQ Examples

Use this method to query client intake form summaries. The result set does not contain all the contents of the intake forms, but only their basic information (id, status, client info).

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 GET \
    //   https://intakeq.com/api/v1/intakes/summary?client=[searchString]&startDate=[yyyy-MM-dd]&endDate=[yyyy-MM-dd]&page=[pageNumber]&all=[bool] \
    //   -H 'X-Auth-Key: xxxxxxxxxxxxxxxxxxxxxxxxx'

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

    http.setRequestHeader(name: "X-Auth-Key", value: "xxxxxxxxxxxxxxxxxxxxxxxxx")

    let sbResponseBody = CkoStringBuilder()!
    success = http.quickGetSb(url: "https://intakeq.com/api/v1/intakes/summary?client=[searchString]&startDate=[yyyy-MM-dd]&endDate=[yyyy-MM-dd]&page=[pageNumber]&all=[bool]", sbContent: sbResponseBody)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    let jarrResp = CkoJsonArray()!
    jarrResp.loadSb(sb: sbResponseBody)
    jarrResp.emitCompact = false

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

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

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

    // [
    //   {
    //     "Id": "00000000-0000-0000-0000-000000000000",
    //     "ClientName": "test",
    //     "ClientEmail": "test@email.com",
    //     "ClientId": 9999,
    //     "Status": "Completed",
    //     "DateCreated": 1458526480368,
    //     "DateSubmitted": 1458526532654,
    //     "QuestionnaireName": "test",
    //     "QuestionnaireId": "1234acbd",
    //     "Practitioner": "test@email.com",
    //     "PractitionerName": "FirstName LastName"
    //   },
    //   {
    //     "Id": "00000000-0000-0000-0000-000000000000",
    //     "ClientName": "test",
    //     "ClientEmail": "test@email.com",
    //     "ClientId": 9999,
    //     "Status": "Completed",
    //     "DateCreated": 1458526480368,
    //     "DateSubmitted": 1458526532654,
    //     "QuestionnaireName": "test",
    //     "QuestionnaireId": "1234acbd",
    //     "Practitioner": "test@email.com",
    //     "PractitionerName": "FirstName LastName"
    //   }
    // ]

    // 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 json: CkoJsonObject?
    var Id: String?
    var ClientName: String?
    var ClientEmail: String?
    var ClientId: Int
    var Status: String?
    var DateCreated: Int
    var DateSubmitted: Int
    var QuestionnaireName: String?
    var QuestionnaireId: String?
    var Practitioner: String?
    var PractitionerName: String?

    var i: Int = 0
    var count_i: Int = jarrResp.size.intValue
    while i < count_i {
        json = jarrResp.object(at: i)
        Id = json!.string(of: "Id")
        ClientName = json!.string(of: "ClientName")
        ClientEmail = json!.string(of: "ClientEmail")
        ClientId = json!.int(of: "ClientId").intValue
        Status = json!.string(of: "Status")
        DateCreated = json!.int(of: "DateCreated").intValue
        DateSubmitted = json!.int(of: "DateSubmitted").intValue
        QuestionnaireName = json!.string(of: "QuestionnaireName")
        QuestionnaireId = json!.string(of: "QuestionnaireId")
        Practitioner = json!.string(of: "Practitioner")
        PractitionerName = json!.string(of: "PractitionerName")
        json = nil
        i = i + 1
    }


}