Ruby
Ruby
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 Ruby Downloads
require 'chilkat'
success = false
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = Chilkat::CkHttp.new()
# To log the exact HTTP request/response to a session log file:
http.put_SessionLogFilename("/someDir/sessionLog.txt")
http.SetRequestHeader("X-Auth-Key","xxxxxxxxxxxxxxxxxxxxxxxxx")
sbJson = Chilkat::CkStringBuilder.new()
success = http.QuickGetSb("https://intakeq.com/api/v1/intakes/[intake-id]",sbJson)
if (success == false)
print http.lastErrorText() + "\n";
exit
end
if (http.get_LastStatus() != 200)
print "status code: " + http.get_LastStatus().to_s() + "\n";
print "response: " + sbJson.getAsString() + "\n";
exit
end
print "raw response: " + "\n";
print sbJson.getAsString() + "\n";
json = Chilkat::CkJsonObject.new()
json.LoadSb(sbJson)
json.put_EmitCompact(true)
print json.emit() + "\n";