Sample code for 30+ languages & platforms
C#

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 C# Downloads

C#
bool success = false;

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

Chilkat.Http http = 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");

Chilkat.StringBuilder sbJson = new Chilkat.StringBuilder();
success = http.QuickGetSb("https://intakeq.com/api/v1/intakes/[intake-id]",sbJson);
if (success == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

if (http.LastStatus != 200) {
    Debug.WriteLine("status code: " + Convert.ToString(http.LastStatus));
    Debug.WriteLine("response: " + sbJson.GetAsString());
    return;
}

Debug.WriteLine("raw response: ");
Debug.WriteLine(sbJson.GetAsString());

Chilkat.JsonObject json = new Chilkat.JsonObject();

json.LoadSb(sbJson);
json.EmitCompact = true;

Debug.WriteLine(json.Emit());