(PHP Extension) Download Full Intake Form in JSON Format
The full intake form is very similar to intake summary object, except it adds an array of questions. For more information, see https://support.intakeq.com/article/31-intakeq-api#download-intake
<?php
// The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number.
// For example, if using Chilkat v9.5.0.48, then include as shown here:
include("chilkat_9_5_0.php");
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
// 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 = new CkStringBuilder();
$success = $http->QuickGetSb('https://intakeq.com/api/v1/intakes/[intake-id]',$sbJson);
if ($success == false) {
print $http->lastErrorText() . "\n";
exit;
}
if ($http->get_LastStatus() != 200) {
print 'status code: ' . $http->get_LastStatus() . "\n";
print 'response: ' . $sbJson->getAsString() . "\n";
exit;
}
print 'raw response: ' . "\n";
print $sbJson->getAsString() . "\n";
$json = new CkJsonObject();
$json->LoadSb($sbJson);
$json->put_EmitCompact(true);
print $json->emit() . "\n";
?>
|