Sample code for 30+ languages & platforms
Xojo Plugin

Download Full Intake Form in JSON Format

See more IntakeQ Examples

The full intake form is very similar to intake summary object, except it adds an array of questions.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

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

Dim http As New Chilkat.Http

// To log the exact HTTP request/response to a session log file:
http.SessionLogFilename = "/someDir/sessionLog.txt"

http.SetRequestHeader "X-Auth-Key","xxxxxxxxxxxxxxxxxxxxxxxxx"

Dim sbJson As New Chilkat.StringBuilder
success = http.QuickGetSb("https://intakeq.com/api/v1/intakes/[intake-id]",sbJson)
If (success = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

If (http.LastStatus <> 200) Then
    System.DebugLog("status code: " + Str(http.LastStatus))
    System.DebugLog("response: " + sbJson.GetAsString())
    Return
End If

System.DebugLog("raw response: ")
System.DebugLog(sbJson.GetAsString())

Dim json As New Chilkat.JsonObject

success = json.LoadSb(sbJson)
json.EmitCompact = True

System.DebugLog(json.Emit())