(PHP ActiveX) 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
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Http')
$http = new COM("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');
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.StringBuilder')
$sbJson = new COM("Chilkat.StringBuilder");
$success = $http->QuickGetSb('https://intakeq.com/api/v1/intakes/[intake-id]',$sbJson);
if ($success == 0) {
print $http->LastErrorText . "\n";
exit;
}
if ($http->LastStatus != 200) {
print 'status code: ' . $http->LastStatus . "\n";
print 'response: ' . $sbJson->getAsString() . "\n";
exit;
}
print 'raw response: ' . "\n";
print $sbJson->getAsString() . "\n";
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject')
$json = new COM("Chilkat.JsonObject");
$json->LoadSb($sbJson);
$json->EmitCompact = 1;
print $json->emit() . "\n";
?>
|