Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Swift 3,4,5...) IntakeQ: Query Intake FormsUse 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). For more information, see https://support.intakeq.com/article/31-intakeq-api#query-forms
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp()! var success: Bool // 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("X-Auth-Key", value: "xxxxxxxxxxxxxxxxxxxxxxxxx") let sbResponseBody = CkoStringBuilder()! success = http.quickGetSb("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(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 } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.