Sample code for 30+ languages & platforms
Chilkat2-Python

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 Chilkat2-Python Downloads

Chilkat2-Python
import sys
import chilkat2

success = False

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

http = chilkat2.Http()

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

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

sbJson = chilkat2.StringBuilder()
success = http.QuickGetSb("https://intakeq.com/api/v1/intakes/[intake-id]",sbJson)
if (success == False):
    print(http.LastErrorText)
    sys.exit()

if (http.LastStatus != 200):
    print("status code: " + str(http.LastStatus))
    print("response: " + sbJson.GetAsString())
    sys.exit()

print("raw response: ")
print(sbJson.GetAsString())

json = chilkat2.JsonObject()

json.LoadSb(sbJson)
json.EmitCompact = True

print(json.Emit())